which operators are known as ternary operators?
Answers
Answered by
6
Programmers use ternary operators in C for decision making inplace of conditional statements if and else. The ternary operator is an operator that takes three arguments. The first argument is a comparison argument, the second is the result upon a true comparison, and the third is the result upon a false comparison.
Answered by
7
Explanation:
The ternary operator is an operator that takes three arguments. The first argument is a comparison argument, the second is the result upon a true comparison, and the third is the result upon a false comparison.
Similar questions