Company: fujitsu
Difficulty: easy
What will be the output of the program given below? #include <stdio.h> int main() { char *p = "Kerala", *q = "Ooty", *r = "Mysore", *s = "Shimoga"; enum loc{Kerala = 1, Ooty = 2, Mysore = 3, Shimoga = 4}; enum loc dir; dir = Shimoga; if (dir == Shimoga) printf("The best place is %s\n", s); return 0; } Assume the program is compiled and run on a standard C compiler and terminates normally.