Answered step by step
Verified Expert Solution
Question
1 Approved Answer
What will be the while statement if you want these output: Assume int a=1000; 100 10 1 while (a>=10) { printf(%d ,a/=10); A }
What will be the while statement if you want these output: Assume int a=1000; 100 10 1 while (a>=10) { printf("%d ",a/=10); A } while (a>=1) { B printf("%d ",a); a/=10; } while (a>=1) { C printf("%d ",a); a=a/10; } D No answer while (a>=1) { F
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started