Computer Science, asked by LoneWolf1405, 5 months ago

State the number of iterations for the following loop:
int a =0, x=0;
while (x + + <9)
a+=x;

Answers

Answered by sahil10august
0

Following loop will iterate 8 times.

Similar questions