home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip Hitware 7
/
Chip_Hitware_Vol_07.iso
/
chiphit7
/
online
/
95htmlno
/
examples
/
hellocgi.c
< prev
next >
Wrap
Text File
|
1996-05-30
|
856b
|
26 lines
/* Generated by HTML Notepad V2.0 1996 */
/* To be found at www.cranial.com/software/htmlnote */
/* Go on admit it, you are impressed! */
void HTMLout(FILE*);
main()
{ printf( "Content-type : text/html\n\n" );
HTMLout( stdout );
return 0;
}
void HTMLout( FILE *fout );
{
fprintf( fout, "<html>\n");
fprintf( fout, "<head>\n");
fprintf( fout, "<meta http-equiv="generator" content="HTML Notepad v2.0">\n");
fprintf( fout, "<meta http-equiv="author" content="Adam Fraser, Cranial Publishing">\n");
fprintf( fout, "<link rev="made" href="mailto:adam@cranial.demon.co.uk">\n");
fprintf( fout, "<title>Hello World</title>\n");
fprintf( fout, "</head>\n");
fprintf( fout, "<body>\n");
fprintf( fout, "<p>Hello World</p>\n");
fprintf( fout, "</body>\n");
fprintf( fout, "</html>\n");
fprintf( fout, "\n");
}