1.

What will be the output of the following C code? #include <stdio.h> int main() { void functionA(), functionB(); functionB(); } void functionA() { printf("Ojha "); } void functionB() { printf("Manjesh "); functionA(); }

A. Ojha
B. Manjesh
C. Manjesh Ojha
D. Compilation Error
E. None of these
Answer» D. Compilation Error


Discussion

No Comment Found