Pages

Saturday, 19 May 2012

program to print your name


38/*Write a program to print your name*/

#include<stdio.h>
#include<conio.h>
main()
{
int a;
clrscr();
for(a=0;a<10;a++)
{
printf("\n HELLO RAM");
break;
}
getch();
}         


OUTPUT

            HELLO RAM

No comments:

Post a Comment