22
votes
What are the best uses for each programming language?
Assembly is useful to learn so that you know exactly what is going on at the bare metal - sometimes useful to understand performance issues. In the majority of cases, it mak …
12
votes
Which coding style you use for ternary operator?
The ternary operator is generally to be avoided, but this form can be quite readable:
result = (foo == bar) ? result1 :
(foo == baz) ? result2 :
(foo == qu …
