C lang
Show Hello World
in C lang
Show "Hello World" on standard output.
hello_world.c
#include <stdio.h>
int main(void) {
printf("Hello World\n");
return 0;
}
Result
$ gcc hello_world.c -o hello_world
$ ./hello_world
Hello World