Which is the best code to learn for beginner's? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Which is the best code to learn for beginner's?

I'm very very VERY new to coding and wanted to know the best code to learn. I wanted to easy my way into coding. Baby steps... before the more advanced stuff...

20th Feb 2019, 9:07 AM
Jacob Noyola
1 Answer
0
In c: #include<stdio.h> int main() { printf("Hello World"); return 0; } In c++: include<iostream> using namespace std; int main() { cout<<"Hello World"; return 0; } In python: print("Hello World") All of the programs will print same as Hello World
20th Feb 2019, 11:05 AM
Sahil Bhakat
Sahil Bhakat - avatar