#include <stdio.h> int main (int argc, char * argv[]) { printf ("Hello, World!\n"); return 0; }
Als hello.c abspeichern, dann übersetzen und ausführen mit:
hello.c
$ make hello && ./hello