Home » Technical Questions » Programming

Rewrite the following set of statements using conditional operators. int a =1, b ; if ( a > 10 ) b = 20;

Correct Answer: int a = 1, b , dummy; a > 10 ? b = 20 : dummy =1; Note that the following would not have worked: a > 10 ? b = 20 : ;;

← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion