Vidyalelo
C Programming · Q89

Control Structures

Programming · C Programming · question 89

Q89

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.
Compilation error
B.
1 2 3
Answer
C.
1 2
D.
1 3

Answer: Option B

Solution

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