-
What will be the output of the following C code?
#include <stdio.h>
int main()
{
int p = 200;
int p = 17;
printf("Hello Interview Mania! %d\n", p);
return 0;
}
-
- Interview Mania
- Hello Interview Mania!
- Compilation Error
- Runtime Error
- None of these
Correct Option: C
Since p is already defined, redefining it results in an error.