main()
{
int m;
char g;
switch(m)
{
case 3: grade="P";break;
case 2: grade="Q";break;
case 1: grade="R";break;
default: grade="S";break;
}
}
What will be the output of the program?
Answer & ExplanationOption: [A]