-
What will be the output of the following C code?
#include <stdio.h>
int const Result()
{
printf("interviewmania.com");
return 0;
}
void main()
{
Result();
}
-
- interviewmania.com is printed infinite times
- interviewmania.com
- Runtime Error
- Error because function name cannot be preceded by const
- None of these
Correct Option: B
interviewmania.com