syntax of ternary operator
Answers
Answered by
4
ternary operator that is part of the syntax for basic conditional expressions in several programming languages. It is commonly referred to as the conditional operator, inline if , or ternary if. An expression a ? b : c evaluates to b if the value of a is true, and otherwise to c .
lalithabhagyasri:
i want to mark as brainlist
Answered by
4
n computer programming, ?: is a ternary operator that is part of the syntax for basic conditional expressions in several programming languages. It is commonly referred to as the conditional operator, inline if (iif), or ternary if. An expression a ? b : c evaluates to b if the value of a is true, and otherwise to c .
mark this answer as brainliest
Similar questions