Download this source file


/* hello.c - a program to print a friendly greeting. */
// Written by Wayne Pollock

#include <stdio.h>

int main ( void )
{
   printf ( "Hello, World!\n" );
   return 0;
}



Send comments and mail to the WebMaster.