1.

Write the equivalent code for the following statement R=(P<Q?P:Q)

Answer»

if(P<Q)

R=P;

else

R=Q;



Discussion

No Comment Found