

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code? #include void function() { printf("Interview mania World"); } void main() { void *p() = function; p++ p(); } |
A. | Illegal application of ++ to void data type & pointer function initialized like a variable |
B. | Illegal application of ++ to void data type |
C. | pointer function initialized like a variable |
D. | All of above |
E. | None of these |
Answer» B. Illegal application of ++ to void data type | |