Question
Download Solution PDFWhat will be the output of the following C program segment ?
char inchar = 'A';
switch (inchar)
{
case 'A' :
printf ("Choice A\n") ;
case 'B' :
printf ("Choice B ") ;
case 'C' :
case 'D' :
case 'E' : break;
default:
printf ("No Choice") ;
}
Answer (Detailed Solution Below)
Choice A
Choice B
Detailed Solution
Download Solution PDFThe correct answer is option 2: Choice A
Choice B
Key Points
- Given code:
char inchar = 'A'; switch (inchar) { case 'A': printf("Choice A\n"); case 'B': printf("Choice B"); case 'C': case 'D': case 'E': break; default: printf("No Choice"); }
- Explanation:
- The value of
inchar
is 'A'. - The control enters
case 'A'
and executesprintf("Choice A\n");
- No
break
aftercase 'A'
, so execution continues tocase 'B'
and printsChoice B
- After that, it reaches
case 'C' ... case 'E'
and hits abreak;
, which stops the switch. default
is not reached since execution already matchedcase 'A'
.
- The value of
Final Output:
Choice A Choice B
Hence, the correct answer is: option 2: Choice A
Choice B
Last updated on Jul 3, 2025
-> NIELIT Scientific Assistant answer key 2025 has been released at the official website.
-> NIELIT Scientific Assistant admit card 2025 has been released.
-> NIELIT Scientific Assistant city intimation slip 2025 has been released at the official website.
-> NIELIT Scientific Assistant exam 2025 is scheduled to be conducted on June 28.
-> A total number of 113 revised vacancies have been announced for the post of Scientific Assistant in Computer Science (CS), Information Technology (IT), and Electronics & Communication (EC) streams.
-> Online application form, last date has been extended up to from 17th April 2025.
->The NIELT has revised the Essential Qualifications for the post of Scientific Assistant. Candidates must possess (M.Sc.)/ (MS)/ (MCA) / (B.E.)/ (B.Tech) in relevant disciplines.
-> The NIELIT Scientific Assistant 2025 Notification has been released by the National Institute of Electronics and Information Technology (NIELIT).