Home > Article > Backend Development > What is the operator "?:" in C language?
The "?:" in C language is a ternary operator, which connects three objects. It is the only ternary operator in C language, also known as Conditional operator.
Its general form is as follows:
表达式a?表达式b:表达式c
Its execution steps are as follows:
1. Calculate the value of expression a.
2. If the value of expression a is 1, execute expression b.
3. If the value of expression b is 0, execute expression c.
Note: When there are multiple ternary operators, they are operated in order from right to left.
For example, the following two expressions are equivalent:
a<b?b:c>b?c:b; a<b?b:(c>b?c:b);
Analysis: The ternary operator determines the truth value of the conditional expression, and if it is true, execute "?" The first expression after the number, otherwise the second expression is executed.
Specific example:
#include<stdio.h> void main() { int x=5; //定义一个整数变量 int y=++x>5?0:1; //通过三目运算符对x进行运算 //判断++x是否大于5,若大于5则将0赋予变量y,否则将1赋予变量y printf("%d,%d\n",x,y); }
Running results:
6,0
Recommended tutorial: c language tutorial
The above is the detailed content of What is the operator "?:" in C language?. For more information, please follow other related articles on the PHP Chinese website!