if the values of a=12;b=98 what will be the finale value of x after the execution of given code.int x =(a+b)>=100? a-b:a*b;
Answers
Answered by
0
Output:
-86
Explanation:
As, 12 + 98 is more than 100,
> x = a - b
> x = 12 - 98
> x = -86
Similar questions