Quote Originally Posted by cyph1e
Is there any way to use 'break', 'continue', and 'return' statements in an if-statement of the form "expr ? t : f"? My compiler complains when I try this.
break and continue are not allowed in if statements. They are used in loops.