Question
if (a > b)
if (c > b)
printf("one");
else
if (c == a) printf('two');
else printf("three");
else printf("four");
a.
results in a syntax error
b.
prints four in c <= b
c.
prints two if c <= h
d.
prints four in a <= b
Posted under C Programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. The following piece of code:
Similar Questions
Discover Related MCQs
Q. Using goto inside for loop is equivalent to using
View solution
Q. The for loop
for( i=0; i<10; ++i)
printf("%d", i & 1);
prints
View solution
Q. In the following loop construct, which one is executed only once always.
for(exp1; exp2; exp3)
View solution
Q. The continue statment cannot be used with
View solution
Q. goto can be used to jump from main to within a function?
View solution
Q. Which loop is guaranteed to execute at least one time.
View solution
Q. A labeled statement consist of an identifier followed by
View solution
Q. do-while loop terminates when conditional expression returns?
View solution
Q. c = (n) ? a : b; can be rewritten as
exp1 ? exp2 : exp3;
View solution
Q. For loop in a C program, if the condition is missing?
View solution
Q. Which of the following statement about for loop is true ?
View solution
Q. In the context of "break" and "continue" statements in C, pick the best statement.
View solution
Q. In _______, the bodies of the two loops are merged together to form a single loop provided that they do not make any references to each other.
View solution
Q. What is the Priority of C Logical Operators?
NOT (!), AND (&&) and OR (||)
View solution
Q. Choose a correct C Operator Priority?
Items in one group ( ) has same priority.
View solution
Q. Choose a correct C Statement.
View solution
Q. Choose a right C Statement.
View solution
Q. Loops in C Language are implemented using?
View solution
Q. Which loop is faster in C Language, for, while or Do While?
View solution
Q. Choose correct C while loop syntax.
View solution
Suggested Topics
Are you eager to expand your knowledge beyond C Programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!