ternary expression in c code example
Example 1: if statement shorthand c
if (true)
printf("This is the shorthand");
// OR
(true) ? (/*run if true*/) : (/*run if false*/);
Example 2: how to use ternary operator in c programming
int a = 10, b = 20, c;
c = (a < b) ? a : b;
printf("%d", c);
Example 3: ternary operator in c
c = (a < b) ? a : b;