Question: What is the value of sum after the code below is executed? int i, sum = 0; for(i = 0; i < 6; i++) {
What is the value of sum after the code below is executed? int i, sum = 0; for(i = 0; i < 6; i++) { switch (i) { case 0: case 1: case 3: case 5: sum++; break; case 2: case 4: sum += 2; break; } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
