home *** CD-ROM | disk | FTP | other *** search
/ ActiveX Programming Unleashed CD / AXU.iso / source / chap13 / lst13_4.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-09  |  271 b   |  17 lines

  1. // lst15_8.cpp
  2.  
  3. #include <stdio.h>
  4.  
  5. void main( int argc, char *argv[ ], char *envp[ ] )
  6. {
  7.     // Header
  8.         
  9.     printf("Status: 200\r\n");
  10.     printf("Content-type: text/html\r\n");
  11.     printf("\r\n");
  12.  
  13.     // Body
  14.  
  15.     printf("<HTML><BODY>Hello World!</BODY></HTML>\n");
  16. }
  17.