- 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...
1 Odpowiedź
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