Help for this page

Select Code to Download


  1. or download this
    #include <stdlib.h>
    #include <stdio.h>
    ...
    {
      printf "Hello world\n"
    }
    
  2. or download this
    #include <stdlib.h>
    #include <stdio.h>
    ...
    {
      printf "Hello world\n";
    }
    
  3. or download this
    #include <stdlib.h>
    #include <stdio.h>
    ...
    {
      printf("Hello world\n");
    }