/* * cgihello.c * * Simple programm outputs greeting through web-server */ #include int main(void) { printf("Content-Type: text/html\r\n\r\n"); printf("\n"); printf("\n"); printf("Hello\n"); printf("\n"); printf("\n"); printf("
Hello WebWorld!
\n
\n"); printf("\n"); printf("\n"); return 0; }