The First Traditional "Hello world!"
From MorphOS Library
Grzegorz Kraszewski
"Hello World!" With the Standard C Library
With the standard C library, one can use the "Hello World!" example exactly as found in a C handbook. It is given below, just for completness:
#include <stdio.h>
int main(void)
{
printf("Hello World!\n");
return 0;
}