//C hello world example #include <stdio.h> int main() { printf("Hello world\n"); return 0; }
#include <stdio.h> int main() { char string[] = "Hello World"; printf("%s\n", string); return 0; }
#include <stdio.h> #define TRUE 1 int main() { while (TRUE) { printf("Hello World\n"); } return 0; }
No comments:
Post a Comment