C

Minimalbeispiel

#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:

$ make hello && ./hello

ISO/Ansi C99

Bibliotheken

Liteartur