Microsoft Advisor (advisor.hlp) (Table of Contents; Topic list)
Sample Example Screen
                                             Up Contents Index Back
─────Microsoft Advisor──────────────────────────────────────────────────────
 
/* SAMPLE.C  This is a sample example program.
 *        (a list of demonstrated functions appears here)
 *
 * A brief description of the program and a list of additional
 * functions or examples appears here.
 */
 
#include <stdio.h>
#include <stdlib.h>
 
void main( void )
{
     /* define string */
     char message[] = "Hi, I'm demonstrating printf!";
 
     printf( "%s", message );      /* print message */
 
     exit( 0 );                    /* return normal exit status */
 
}
                                    -♦-