Home > Article > Backend Development > What does O mean in c language
In C language, "O" means: 1. Zero in octal number; 2. The third expression in the triple conditional operator; 3. Parentheses.
#What does O mean in C language?
In C language, "O" means:
1. Zero in octal number
2. The third expression in the triple conditional operator
<code class="c">(condition) ? true_expression : false_expression;</code>
true_expression
is calculated and returned. false_expression
is calculated and returned. true_expression
when the condition is true. 3. Parentheses
<code class="c">printf("Hello, world!\n");</code>
printf
function. The above is the detailed content of What does O mean in c language. For more information, please follow other related articles on the PHP Chinese website!