Discussion :: Functions
-
Point out the error in the program
#include
Answer : Option A
Explanation :
The function void f() is not visible to the compiler while going through main() function. So we have to declare this prototype void f(); before to main() function. This kind of error will not occur in modern compilers.
Be The First To Comment