What is the output of this program? #include int main() { i…
What is the output of this program? #include int main() { int x = 2; switch (x) { case 1: printf(“zebra\n”); break; case 2: printf(“anteater\n”); break; case 3: printf(“lion\n”); break; default: printf(“elephant\n”); } return 0; }
Read DetailsWhat is the output of this program? #include int main() { i…
What is the output of this program? #include int main() { int x = 4; switch (x) { case 1: printf(“corn\n”); break; case 2: printf(“pinto beans\n”); break; case 3: printf(“banana\n”); break; default: printf(“apple\n”); } return 0; }
Read Details