Q:
Rewrite the following set of statements using conditional operators.
int a =1, b ;
if ( a > 10 )
b = 20;
Answer
int a = 1, b , dummy;
a > 10 ? b = 20 : dummy =1;
Note that the following would not have worked:
a > 10 ? b = 20 : ;;
View answer
Workspace
Report Error
Discuss