1.

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

Answer» 58 the outputExplanation:COUNT PRINT STRING


Discussion

No Comment Found