[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

41 / 61

Consider a part of a loop as shown below.

#include <stdio.h>
for (i = 0; i < = 10000; i++)
{
:
:
if (error < 0.005) 
break;
}

The above loop will?

Aalways run for 10,000 times

Bwill never run for 10,000 times

Cmay or may not run for 10,000 times

DNone of these

Answer: Option (Login/Signup)

Show Explanation

Asked In ::

Post Your Answer Here:     

No Discussion on this question yet!