Computer Science, asked by padhytanmayee, 2 months ago

write a program to print your name 10 times using only print f( ) function​

Answers

Answered by ankitanand10
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