Write a program to input a name and print the name 7 times using WHILE-WEND. (Variable description not required)
Answers
Answered by
0
Answer:
#include <stdio.h>
int main()
{
int a = 1;
while ( a <= 10 )
{
printf ( "Hello World\n" );
a ++;
}
return 0;
}
Similar questions