India Languages, asked by rj699, 6 months ago

int a = 8, b = 13, c = 0;
if (a > 10 || b > 10)
c = 10;
else
c = 5;
What is the value of c?​

Answers

Answered by shreyajha30
0

Answer:

I guess the answer is 10

Explanation:

because the condition in if statement is true... so from my point of view the answer is 10

Similar questions