Computer Science, asked by neeti4642, 11 months ago

int b=(n1 <n2 ) ? n1 : n2 when n1 =10& n2 = 0
find b ​

Answers

Answered by prudhviip
1

Answer:

0 is the answer

Explanation:

int b=(10<0)? 10:0

10 is not less than 0 so it flase so it indicates 0

else if it is true than answer would be 10.

Similar questions