Plain C Hello
/* Say hello, C. */ #include <stdio.h> int main(void) { printf("Hello, world!\n"); return 0; }
Uses the plain C standard I/O library to print the message. Notice the different include, and the lack of a using.