Vidyalelo
C Programming · Q96

Control Structures

Programming · C Programming · question 96

Q96

What will be the output of the following C code? #include int main() printf("before continue "); continue; printf("after continue ");

A.
Before continue after continue
B.
Before continue
C.
After continue
D.
Compile time error
Answer

Answer: Option D

Solution

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