QUIZ-3 OF C PROGRAMMING LANGUAGE
Q 1 – What is the output of the following program? #include<stdio.h> { int x = 1; switch(x) { default: printf(“Hello”); case 1: printf(“hi”); break; } } A – Hello B – Hi C –...
Q 1 – What is the output of the following program? #include<stdio.h> { int x = 1; switch(x) { default: printf(“Hello”); case 1: printf(“hi”); break; } } A – Hello B – Hi C –...