Computer Science, asked by Chinky24, 1 year ago

which operators are known as ternary operators?

Answers

Answered by Thinkab13
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 Anonymous
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