What is the use of ternary operators??
Answers
Answered by
2
The ternary operator is used to execute code based on the result on the binary condition. it takes a binary condition as input.
Answered by
0
Answer:
The ternary operator is unique to c++. It is used to specify a condition with two values,and if the condition is evaluated to true, then the first value is assigned to a new variable. if the condition is evaluated to be false, then the second value is assigned to a new variable.
syntax:variable=condition? value1:value2
the following program is an example of ternary operators
#include<iostream.h>
void main()
{
clrscr();
int a=5;
int b=8;
int c;
c=(a>b)?a:b;
cout<<"the greater number is"<<c;
getch();
}
output for following program: the greater number is 8
Similar questions