- Change the following do-while loops to while loops using Clanguage:
x = 0;
do
{
printf(“%dn”, x);
x++;
} while(x < 100);
do
{
scanf(“%d%*c”, &x);
} while(x != 0);
The complete program is not required.Please type it, not handwriting. Too hard to see 😛
Expert Answer
An answer will be send to you shortly. . . . .