The below given program illustrates the use of conditional operator.
3.2 Write a program to use the conditional operator with two values.
# include <stdio.h>
# include <conio.h>
mainO
{
clrscr();
printf ("Result = %d”,2==3 ? 4:5 );
I
QUTEUE
Result = 5
ExplanationIn the above program the condition 2= =3 is false. Hence, 5 is printed.
33 Write a program to use the conditional operator with two statements.
# include <stdio.h>
# include <conio.h>
void mainO
{
clrscr();
3>2 ? printf ("Drue ") : printf ("False.");
QLErP.U I;
True.
ExplanationIn the above program a full statement is used using the condit
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month, and much more.