Wednesday, August 3, 2011

First Program

// This is the basic and the first program taught , to display a set of lines on the output device.

#include<stdio.h>
void main ()
{
printf(" Hello World ");
printf("\n Welcome to GITAM " );
printf("\n Welcome to C Lab" );
}


OUTPUT:

Hello World
Welcome to GITAM
Welcome to C Lab


if there is any query related to this program , comment below this post.
for other queries contact here.

Read full history - First Program

About Me