1.

Point out the error in the following program (if it is compiled with Turbo C compiler). #include int main() { display(); return 0; } void display() { printf("IndiaBIX.com"); }

A. No error
B. display() doesn't get invoked
C. display() is called before it is defined
D. None of these
Answer» D. None of these


Discussion

No Comment Found