Computer Science, asked by rayaishik, 11 days ago

Write the equivalent do-while loop for the following for loop: [2]

for( ; ; ) { a + + ; }​

Answers

Answered by harmanmannpb06
0

Answer:

int a = 1;

while (a <= 100)

{

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

a++;

}

Please mark me as brainliest!!!

Similar questions