Q64
What will be the output of the following C code? #include int main() int *p = NULL; for (foo(); p; p = 0) printf("In for loop "); printf("After loop ");
A.
In for loop after loop
B.
Compile time error
AnswerC.
Infinite loop
D.
Depends on the value of NULL
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board