write a program to write your name 3 times in python
Answers
Answered by
0
Explanation:
#include<stdio.h>
void main()
{
char b[80];
int a=1;
scanf ("%c",&b);
while (a<=5)
{
printf("%s\n",b);
a=a+1;
}
}
have a great day!!
Similar questions