Flow-control structures: Difference between revisions

m
Aesthetic change
m (Added to <20 category)
m (Aesthetic change)
Line 53:
=== Exceptions ===
{{works with|GCC|4.0.2}}
 
Exceptions are a way to give control back to a direct or indirect caller in case of an error. Note that throwing exceptions is usually very expensive, therefore they generally should only be used for exceptional situations.
#include <iostream>
Line 184 ⟶ 183:
=={{header|Perl}}==
{{works with|Perl|5.x}}
 
===goto===
 
Anonymous user