merqery in c

This tip submitted by jeevan on 2013-03-27 13:54:33. It has been viewed 15030 times.
Rating of 5.0 with 152 votes



#include
#include
void main()
{
int i;
char name;
clrscr();
printf(\"enter the name\");
scanf(\"%s\",name);
for(i=0;i<100;i++)
{
printf(\"%s\",name);
delay(200);
clrscr();
}
getch();
}




More tips

Help your fellow programmers! Add a tip!