-
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();
}
-
- Ojha
- Manjesh
- Manjesh Ojha
- Compilation Error
- None of these
Correct Option: C
Manjesh Ojha