Conditional Operator in C

Last Updated :

Prerequisite – Operators in C
The conditional operator in C is a ternary operator that is used to evaluate a boolean expression and return one of two values depending on whether the expression is true or false.

Syntax:
The syntax of the conditional operator is as follows:

condition ? value_if_true : value_if_false;

Here, condition is a boolean expression that is evaluated. If the condition is true, then the value of value_if_true is returned, otherwise the value of value_if_false is returned.

Example:
Here’s an example code that demonstrates the use of the conditional operator in C:

#include <stdio.h>

int main() {
    int a = 10, b = 5, c;
    
    c = (a > b) ? a : b;
    printf("The larger number is: %d\n", c);
    
    return 0;
}

In this example, we declare three integer variables a, b, and c. We then use the conditional operator to assign the larger of the two numbers a and b to c. The boolean expression a > b is evaluated, and if it is true, the value of a is returned, otherwise the value of b is returned. The result is then assigned to c, which is printed to the console.

The output of this program will be:

The larger number is: 10

As you can see, the value of c is assigned the value of a (10), since a is greater than b (5).

Please write comments below if you find anything incorrect, or you want to share more information about the topic discussed above. A gentle request to share this topic on your social media profile.

Comment
Next Article
Mithlesh Upadhyay Published 18 Feb, 2023 · 2 min read

Mithlesh Upadhyay is a Computer Science and AI expert from Madhya Pradesh with strong academic background (BE in CSE and M.Tech in AI) and over six years of experience in technical content development. He has contributed tech articles, led teams, and worked in Full Stack Development and Data Science. He founded the w3colleges.org portal for learning resources.

Similar Reads

  • What should we use void main() or int main() ?

    There is question that what should we use void main() or int main() ? void main() { /* ... */ } Or, int main() { /* ... */…

    2 min read
  • C Comments

    Prerequisite – C Language Introduction C comments explain code and improve readability. These do not affect program execution. You can use comments in C to clarify code and describe…

    1 min read
  • C Programming Language Standard

    Prerequisite – C Language Introduction The C programming language has various versions: C89/C90, C99, C11, and C18. C89/C90: Released in 1989/1990. It introduced key language features. C99: This…

    2 min read
  • Features of C Programming Language

    Prerequisite – C Language Introduction C is a simple language made in 1972 by Dennis Ritchie. It’s for system programming. C has low-level memory access, basic keywords, good…

    1 min read
  • C Language Introduction

    C is a programming language developed by Dennis Ritchie in 1972. It has a significant historical impact. It was originally created at Bell Laboratories of AT&T Labs for…

    4 min read
  • Code editors

    Code editors are where programmers spend most of their time. There are two main types of code editors: IDEs and Lightweight editors. IDEs (Integrated Development Environments) IDEs (Integrated…

    1 min read