#include
#include
int main(void)
{
printf("hello world\n");
return EXIT_SUCCESS;
}
I think strict ANSI-C code would look like this
#include
#include
int main( void )
{
printf("Hello world!\n");
exit(0);
}
and here's something funny about "Hello world!" programs:
Evolution of a programmer