Computer Science, asked by bohrazakiya18, 10 hours ago

f) Write an equivalent while loop for the following for loop. for (p=10; p < 20; p + +) printf (" %d\t", p)​

Answers

Answered by shubhamga24
2

Answer:

However, here is the answer.

int a = 1;

while (a<=100)

{

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

a++;

}

Similar questions