Sunday, July 31, 2016

PRINTF COMMAND

/*PRINTF COMMAND*/

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("HELLO\n");
printf("WELCOME TO RKGIT\n");
getch();
}


/************************OUTPUT***************************
HELLO
WELCOME TO RKGIT*/

No comments:

Post a Comment