Vidyalelo
C Programming · Q94

Control Structures

Programming · C Programming · question 94

Q94

What will be the output of the following C code? #include int main() int a = 1; if (a) printf("All is Well "); printf("I am Well "); else printf("I am not a River ");

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
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board