Hello World!
Everyone's first program is Hello World!
Hello World!
//main.c
#include <stdio.h>
int main() {
// This is a comment.
/* This is a multi-lined comment.
* These gray lines are ignored by the program.
* It is only for the developer, to remember something,
* or to tell their peers how the program works.
*/
printf("Hello, World!\n"); // \n means newline
return 0;
// Console:
// Hello, World!
//
}Last updated


