hachyderm.io is one of the many independent Mastodon servers you can use to participate in the fediverse.
Hachyderm is a safe space, LGBTQIA+ and BLM, primarily comprised of tech industry professionals world wide. Note that many non-user account types have restrictions - please see our About page.

Administered by:

Server stats:

9.5K
active users

Šimon Tóth

The conditional operator, also known as the ternary operator, is essentially an if statement in the form of an expression.

The operator is sequenced. The left side, with all its side effects, is evaluated first, followed by one of the right-side operands.

Before C++14, the ternary operator was the only way to inject logic into a constant-evaluated expression.

Compiler Explorer link: compiler-explorer.com/z/5shYvh