[Updated] Goldman Sachs Aptitude Test Questions and Answers
Practice List of TCS Digital Coding Questions !!!
Take 50+ FREE!! Online Data Interpretation Mock test to crack any Exams.

C Programming :: Loop Control - Discussion

Home > C Programming > Loop Control > MCQs Questions Discussion

42 / 61

Choose the correct option.

How many times will while loop be executed in the following C program.

void main(){
x = 500;
while (x < = 500)
{
x=x-600;
if (x < 0)
break;
}

A0

B1

C500

D100

Answer: Option (Login/Signup)

Show Explanation

Asked In ::

Post Your Answer Here:     

No Discussion on this question yet!