Computer Science, asked by shreejitdutta53, 1 year ago

What are the values of result1 and result2 when the following statements are executed
int num1=53,num2=35;
int result1=(num1>num2) ? num1: num2;
int result2=(num1<num2) ? num1: num2;​

Answers

Answered by shivu0518
0

Answer:

resunt1= 53

result2= 53

Answered by jackmartinn037
0

Answer:

result1 = 53

result2 = 35

Explanation:

in first condition num1 will print

in second condition num2 will print

Similar questions