Write the equivalent do-while loop for the following for loop: [2]
for( ; ; ) { a + + ; }
Answers
Answered by
0
Answer:
int a = 1;
while (a <= 100)
{
printf("%d\n",a*a);
a++;
}
Please mark me as brainliest!!!
Similar questions
Physics,
1 month ago
Social Sciences,
1 month ago
Geography,
1 month ago
Science,
3 months ago
Science,
3 months ago
English,
10 months ago
Computer Science,
10 months ago