Hello world in C

#include <stdio.h>

int main(void)
{
  printf("Hello world!\n");
  return 0;
}
Compile:
gcc first.c
cc first.c
Run:
./a.out