Skip to Main Content
Programming and Data Structures
book

Programming and Data Structures

by Ashok Kamthane
August 2009
Intermediate to advanced content levelIntermediate to advanced
604 pages
21h 39m
English
Pearson India
Content preview from Programming and Data Structures
44 Programming and Data Structures
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>
main O
{
clrscr();
printf ("Result = %d”,2==3 ? 4 : 5 );
I
QUTEUE
Result = 5
Explanation In 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 m a i n O
{
clrscr();
3>2 ? printf ("Drue ") : printf ("False.");
QLErP.U I;
True.
Explanation In 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.
Start your free trial

You might also like

Learning Data Structures and Algorithms

Learning Data Structures and Algorithms

Rod Stephens
Data Structures and Algorithms in C++, Second Edition

Data Structures and Algorithms in C++, Second Edition

Michael T. Goodrich, Roberto Tamassia, David M. Mount

Publisher Resources

ISBN: 9789332506343