What is the output of the following code? int i = 0;for (i…
What is the output of the following code? int i = 0;for (i = 0; i < 20; i++){ switch(i){ case '0': i += 1; case '1': i += 2; case '5': i += 3; default: i += 4; break;}printf("%d ", i); }
Read Details