Question
a.
use of goto enhances the logical clarity of the code
b.
use of goto makes the debugging task easier
c.
use goto when you want to jump out of a nested loop
d.
never use goto
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. Choose the correct statement
Similar Questions
Discover Related MCQs
Q. Which is true of conditional compilation ?
View solution
Q. Choose the statements that are syntactically correct
View solution
Q. In a for loop, if the condition is missing, then,
View solution
Q. In a for loop, if the condition is missing, then infinite looping can be avoided by a
View solution
Q. Which of the following comments about for loop are correct?
View solution
Q. Which of the following comments about for loop are correct ?
View solution
Q. Choose the correct answers
View solution
Q. Consider the following program fragment
if (a > b)
if (b > c)
s1 ;
else s2;
s2 will be executed if
View solution
Q. If switch feature is used, then
View solution
Q. The switch feature
View solution
Q. Break statement can be simulated by using
View solution
Q. The body of the following for loop
for( putchar( 'a' ); putchar (0); putchar (' c ') ) putchar ( 'b') ;
will be executed
View solution
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
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!