which type of operator is the conditional operator
Answers
Answered by
0
Answer:
ternary operator
Explanation:
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 . It is evaluated and all side effects are completed before continuing.
Similar questions