Question
#include <stdio.h>
int main()
{
int a = 1;
if (a)
printf("All is Well ");
printf("I am Well\n");
else
printf("I am not a River\n");
}
a.
Output will be All is Well I am Well
b.
Output will be I am Well I am not a River
c.
Output will be I am Well
d.
Compile time errors during compilation
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. Comment on the output of this C code? #include <stdio.h> int main() { int a = 1; if (a) printf("All is Well ");...
Similar Questions
Discover Related MCQs
Q. Switch statement accepts
View solution
Q. The following code ‘for(;;)’ represents an infinite loop. It can be terminated by
View solution
Q. The correct syntax for running two variable for loop simultaneously is.
View solution
Q. Which for loop has range of similar indexes of ‘i’ used in for (i = 0;i < n; i++)?
View solution
Q. Which of the following cannot be used as LHS of the expression in for (exp1;exp2; exp3) ?
View solution
Q. Example of iteration in C
View solution
Q. Number of times while loop condition is tested is, i is initialized to 0 in both case.
while (i < n)
i++;
————-
do
i++;
while (i <= n);
View solution
Q. Which loop is most suitable to first perform the operation and then test the condition?
View solution
Q. Which keyword can be used for coming out of recursion?
View solution
Q. The keyword ‘break’ cannot be simply used within:
View solution
Q. Which keyword is used to come out of a loop only for that iteration?
View solution
Q. goto can be used to jump from main to within a function
View solution
Q. Which command is used to skip the rest of a loop and carry on from the top of the loop again?
View solution
Q. The type of the controlling expression of a switch statement cannot be of the type ........
View solution
Q. What's wrong in the following statement, provided k is a variable of type int?
for(k = 2, k <=12, k++)
View solution
Q. Consider the following program fragment. What would be the value of sum for the input 1, -1, 2, -2, 3, -3, 4, -4, 5, -5
View solution
Q. Which of the following is not logical operator?
View solution
Q. In mathematics and computer programming, which is the correct order of mathematical operators ?
View solution
Q. Which of the following cannot be checked in a switch-case statement?
View solution
Q. Which of the following statements are correct about an if-else statements in a C-program?
1: Every if-else statement can be replaced by an equivalent statements using ?: operators
2: Nested if-else statements are allowed.
3: Multiple statements in an if block are allowed.
4: Multiple statements in an else block are allowed.
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!