Introduction
Statistics
Contact
Development
Disclaimer
Help
sdf.org home page
/* hello.c - "Hello, World!" in C */
#include <stdio.h>
int main()
{
printf("Hello, World!\n");
}