which operators are known as ternary operators?
Answers
Answered by
6
Answer:
this is ur answer
please mark me as a brainliest
and follow me
Attachments:
Answered by
1
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