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
0
Explanation:
its already in while loop, you should have askw for for loop conversion...
Similar questions