Not graded. Help me What will be the output of the following code. #include int main() { int a = 5; switch(a) { Default: a = 4; case 6: a-- case 5: a = a+13; case 1: a = a-1; } printf("%d \n",a);...


Not graded. Help me


What will be the output of the following code.<br>#include<stdio.h><br>int main()<br>{<br>int a = 5;<br>switch(a)<br>{<br>Default: a = 4;<br>case 6: a--<br>case 5: a = a+13;<br>case 1: a = a-1;<br>}<br>printf(

Extracted text: What will be the output of the following code. #include int main() { int a = 5; switch(a) { Default: a = 4; case 6: a-- case 5: a = a+13; case 1: a = a-1; } printf("%d \n",a); return 0; }

Jun 05, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here