Write your school name 100 times using for loop.
Answers
Answered by
0
Answer:
#include <stdio.h>
int main()
{
int i;
char str[50];
printf("Enter Your School Name - ");
scanf("%s",str);
for (i=1;i<=100;i++)
{
printf("%s\t",str);
}
return 0;
}
Similar questions