Computer Science, asked by Darshankrishna, 5 months ago

Give the output of the following:

int x = (4>3)? 4*3 : 3*4;

Answers

Answered by temporarygirl
1

Hola mate

Here is your answer -

since 4>3 is true first statement is executed

so x=4*3

x=12

Similar questions