What will be the output when the following code is executed.
#include
int main()
{
int a[6]={1,2,3,4,5,6};
switch(sizeof(a))
{
case 1:
case 2:
case 3:
case 4:
case 5:
printf ("IIT KGP");
break;
}
printf ("IIT MADRAS");
return 0;
}
HINT:-type exactly what is printed
Answers
Answered by
2
Answer:
5
8
the output
Explanation:
count print string
Similar questions