Computer Science, asked by Anjalibansal1707, 8 months ago

More sums on ternary operators

Answers

Answered by Anonymous
0

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