Question
for ( putchar( 'c' ); putchar ( 'a' ); putchar ( ' r' ))
putchar ( 't' );
a.
a syntax error
b.
cartrt
c.
catrat
d.
catratratratrat
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 loop outputs
Similar Questions
Discover Related MCQs
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
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
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!