+ 1

[DUPLICATE] What is your first code?

3rd Feb 2018, 10:51 AM
Bikalpa Dhungana
Bikalpa Dhungana - avatar
4 Answers
+ 2
#include <stdio.h> int main() { /*printf is used to display the text which is written inside " "*/ printf("hello world!!!"); return 0; }
3rd Feb 2018, 10:53 AM
Bikalpa Dhungana
Bikalpa Dhungana - avatar
+ 1
cout hello worldšŸ˜‰
3rd Feb 2018, 11:00 AM
Parv Thacker
Parv Thacker - avatar
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...
3rd Feb 2018, 11:13 AM
Parv Thacker
Parv Thacker - avatar