Computer Science, asked by sakshisingh116, 9 months ago

while (x!=0)
{
int d=x%10;
s=s+ d;
x= x/10;
}
convert the following loop statement in do while loop ​

Answers

Answered by SASHANKSAHIL
0

Explanation:

its already in while loop, you should have askw for for loop conversion...

Similar questions