write the equivalent code for while loop format in C
Answers
Answered by
0
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