Computer Science, asked by Argha2007, 6 months ago

Write a program to input a name and print the name 7 times using WHILE-WEND. (Variable description not required)​

Answers

Answered by mail2rheaagr
0

Answer:

#include <stdio.h>

int main()

{

   int a = 1;

   while ( a <= 10 )

   {

       printf ( "Hello World\n" );

       a ++;

   }

   return 0;

}

Similar questions