syntax for conditional operator
Answers
Answered by
2
Answer:
The conditional operator (? :) is a ternary operator (it takes three operands). The conditional operator works as follows: The first operand is implicitly converted to bool . ... If the first operand evaluates to true (1), the second operand is evaluated.
Similar questions