Top

Discussion

c = (n) ? a : b; can be rewritten asexp1 ? exp2 : exp3;

  • A.if(n){c = a;}else{c = b;}
  • B.if(!n){c = a;}else{c = b;}
  • C.if(n){c = b;}else{c = a;}
  • D.None of the above

Answer: A

No answer description available for this question.
 

No comment is present. Be the first to comment.
Loading…

Post your comment