Q141
What will be the output of the following C code? #include int main() printf("%d ", 1); l1:l2: printf("%d ", 2); printf("%d ", 3);
A.
Compile time error
B.
1 2 3
AnswerC.
1 2
D.
1 3
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board