Q172
What will be the output of the following C code? #include void first() printf("Hello World"); void main() void *ptr() = first; ptr++ ptr();
A.
Illegal application of ++ to void data type
B.
pointer function initialized like a variable
C.
Illegal application of ++ to void data type & pointer function initialized like a variable
AnswerD.
None of the mentioned
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board