Ask Question

What is the output of the following C+ + code? int x = 55; int y = 5; switch (x % 7) { case 0: case 1: y++; case 2: case 3: y = y + 2; case 4: break; case 5: case 6: y = y - 3; } cout << y << endl;

+4
Answers (1)
  1. 29 July, 19:42
    0
    you get 2
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “What is the output of the following C+ + code? int x = 55; int y = 5; switch (x % 7) { case 0: case 1: y++; case 2: case 3: y = y + 2; case ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers