Computer Science, asked by SharanyaN, 3 months ago

Give the output of the following: int x = (4>3)?4*3:3*4;

Answers

Answered by bhargavasaireddy
1

Answer:

12

Explanation:

since 4>3 is true first statement is executed

so x=4*3

x=12

Similar questions