Computer Science, asked by saritakumari3554, 7 months ago

find output of cout « a%b if a=12 and b=13​

Answers

Answered by ritikahirve
0

Answer:

Which of the following is the correct order of evaluation for the below expression?

z = x + y * z / 4 % 2 - 1

[A].* / % + - =[B].= * / % + -[C]./ * % - + =[D].* % / - + =

Answer: Option A

Explanation:

C uses left associativity for evaluating expressions to break a tie between two operators having same precedence.

Answered by yashverma7278841
0

Answer:

12

modulas opearator gives remainder when you divide a by b

whenever a is less than b then you get a on taking a%b

Similar questions