+ 1
[DUPLICATE] What is your first code?
4 Answers
+ 2
#include <stdio.h>
int main() {
/*printf is used to display the text
which is written inside " "*/
printf("hello world!!!");
return 0;
}
+ 1
cout hello worldš
0
And yes, In #include , use <c-----> instead of <------.h>
because many comilers dosen't support it...
Eg. <cstdio> instead of <stdio.h>. Atleast Visual C++ (which is widely used compiler) dosen't support it...