Ternary Operator
There's a shorthand for the if-else statement known as the ternary operator.
(condition) ? value_if_true : value_if_false
You can use this operator when you want to assign one of two values to a variable based on a condition. For instance, to determine the larger of two variables:
main.c
12345int a = 10; int b = 4; int c; c = (a > b) ? a : b;
After executing the above statement, what will be the value of c?
For comparison, here's how the same logic looks using the if...else statement.
main.c
123456if (a > b) { c = a; } else { c = b; }
While the ternary operator is a concise way to express conditionals, it's best to avoid it in too complex structures.
Danke für Ihr Feedback!
Fragen Sie AI
Fragen Sie AI
Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen
What are the values of the variables involved in the ternary operation?
Can you show the full code example for context?
Can you explain how the ternary operator works in this case?
Awesome!
Completion rate improved to 2.63
Ternary Operator
Swipe um das Menü anzuzeigen
There's a shorthand for the if-else statement known as the ternary operator.
(condition) ? value_if_true : value_if_false
You can use this operator when you want to assign one of two values to a variable based on a condition. For instance, to determine the larger of two variables:
main.c
12345int a = 10; int b = 4; int c; c = (a > b) ? a : b;
After executing the above statement, what will be the value of c?
For comparison, here's how the same logic looks using the if...else statement.
main.c
123456if (a > b) { c = a; } else { c = b; }
While the ternary operator is a concise way to express conditionals, it's best to avoid it in too complex structures.
Danke für Ihr Feedback!