R

Rakesh Kumar • 28.44K Points
Instructor II

Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x % y);

  • (A) 10
  • (B) 20
  • (C) 0
  • (D) Error
  • Correct Answer - Option(A)
  • Views: 50
  • Filed under category C++

Explanation by: Rakesh Kumar
The expression (x % y) evaluates to 10 because 10 divided by 20 leaves a remainder of 10.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.


Question analytics