Don't Be Scared of Ternary Operators
Sometimes when looking through a C/C++ codebase you may see these weird symbols littered through code that you do not understand. For example:
z = (x < y) ? 10 : 0;
When I first started coding these operations scared me because I had no idea wha...
jonahmgoldsmith.hashnode.dev2 min read