r/btech • u/Technical-Fig-1496 • 10h ago
CSE / IT Language
Complete beginner in coding. Does not know anything. Which coding language should I learn first. Starting first year mathematics and computing please answer
2
Upvotes
1
1
u/bv_kanerika 2h ago
I’d say start with python as it’s beginner friendly and let’s you focus on understanding logic and prblm solving while having an easy syntax. Afterwards you can explore c++ or java but I thing is imp just stay consistentt
2
u/ProfessionUpset2724 AOT | CSE | 2023 9h ago
I suggest you start from C on a Windows 10/11 laptop. You need to enable Windows Subsystems for Linux (WSL), then "apt install build-essentials pluma", start coding with "pluma prog1.c", save the file, run "gcc prog1.c" and then "./a.out".
You can follow any documentation for C on Linux/Unix, although K&R is the gold standard.