Hello World en C

#include <stdio.h>
#include <stdlib.h>

int main( void )
{
  puts("Hello World!\n");
  return EXIT_SUCCESS;
}

Et alors?

Compiler:

gcc -o test test.c