What is the output of the following piece of code:
switch(2) {
case 1: printf(“One”); break;
case 2: printf(“Two”);
case 3: printf(“Three”); break;
}
What is the output of the following piece of code:
switch(2) {
case 1: printf(“One”); break;
case 2: printf(“Two”);
case 3: printf(“Three”); break;
}
© 2017 QuizBucket.org