/* //:hello.c -- a simple cgi program
 gcc -Wall -o hello.cgi hello.c

 */
#include <stdio.h>
int main(int argc, char* argv[]) {

printf("Content-type: text/html\n\n");
printf("<h1>Hello World</h1>\n");

return(0);
}
