Computer Science, asked by RRaaaaju, 8 months ago

write the equivalent code for while loop format in C​

Answers

Answered by maquib8862
1

Answer:

Explanation:

It is not a research question. You can find answer for these type of questions in any C/C++ text books.

However, here is the answer.

int a = 1;

while (a<=100)

{

printf("%d\n",a*a);

a++;

}

Similar questions