How can I avoid having unmatched parenthesis and braces?
A21: Unmatched parentheses and braces result in parse errors at compile time, and can be very difficult to find. The Resolve/C++ Error Checking Utility (RECU) tool can help you find such problems. The best solution is to avoid these problems: to discipline oneself to always type in the closing parenthesis/brace for every opening one immediately, and not after the block between them is typed in.