/** * hello.c * * Known as "the first C program," from K&R. Greets the world. */ #include int main(void) { printf("Hello, World!\n"); return 0; }