/* * Hello World in C */ // Put any includes here for standard libraries, etc. #include // Return 0 to indicate success (main can optionally take in // command-line arguments, but you can skip that if it doesn't // use them at all) int main() { // Note for printf: don't forget the \n so that whatever is printed // later goes on a separate line printf("Hello, world!\n"); // use "" for strings and '' for chars return 0; }