What will be the output for the following code?
int main()
{
int a=5,b=7
switch(a)
{
case 5 :printf(""I am 5"");
break
case 7: printf(""I am not 5"");
break;
default:printf(""I am different"");
}
return 0;
}
A. I am 5
B. I am not 5
C. I am different
D. Error