write a program to print your name 10 times using only print f( ) function
Answers
Answered by
1
#include <stdio.h>
int main()
{
int i;
char str[50];
printf("Enter Your Name - ");
scanf("%s",str);
for (i=1;i<=100;i++)
{
printf("%s\t",str);
}
return 0;
}
Similar questions