InterviewSolution
Saved Bookmarks
| 1. |
3.3: Identify the errors in the following program. 1 2 3 4 5 6 7 8 9 10 #include void main() { int i=5; while(i) { switch(i) { default: case 4: 11 12 13 14 15 16 17 18 19 20 21 case 5: break; case 1: continue; case 2: case 3: break; } i-; } } |
| Answer» SAY me the labguage EXPLANATION:MARK me as BRAINLIST PLS PLS PLS PLS PLS PLS | |