What is the equivalent code of the following statement in WHILE LOOP format?
for (a=1; a<=100; a++) printf ("%d\n", a * a);
Please read the guide .
Please answer the question in detail
a=1; while (a<=100) { printf ("%d\n", a * a); a++; }
Doubtly is an online community for engineering students, offering:
Get the pro version for free by logging in!
5.7k questions
5.1k answers
108 comments
557 users