
// 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...