MyBB Community Forums

Full Version: hello world
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
this is my test1483801863
this is my test 663653790
this is my test 1098951627
this is my test 1199809020
this is my test 1972681838
this is my test 532553031
this is my test 1144252307
#include <stdio.h>
int main() {
printf('Hello world!');
return 0;
}
(2015-09-13, 07:58 PM)Cookie123 Wrote: [ -> ]#include <stdio.h>
int main() {
printf('Hello world!');
return 0;
}

Double vs single quotes matter in C.
(2015-09-15, 12:03 AM)Josh H. Wrote: [ -> ]
(2015-09-13, 07:58 PM)Cookie123 Wrote: [ -> ]#include <stdio.h>
int main() {
 printf('Hello world!');
 return 0;
}

Double vs single quotes matter in C.

Really? Interesting.

#include <stdio.h>
int main() {
printf("Hello world!");
return 0;
}