Help for this page

Select Code to Download


  1. or download this
    # include <stdlib.h>
    # include <stdio.h>
    ...
        printf ("Hello, world\n");  /* Print 'Hello, world' */
        exit (0);
    }
    
  2. or download this
    $ gcc -E hello.c | wc -l
       1566
    $ gcc -E hello.c | grep -v '^$' | wc -l
        853