Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
In that succinct and (perhaps consequently) much-beloved classic tutorial The C Programming Language, authors Brian Kernighan and Dennis Ritchie begin by presenting what has come to be known as the hello-world program[1]:
[1] Brian W. Kernighan and Dennis M. Ritchie, The C Programming Language, 2nd ed. (Englewood Cliffs, NJ: Prentice Hall, 1988). The hello-world program in the first edition (1978) was the same but without the #include statement.
#include <stdio.h> main() { printf("hello, world\n"); }