Halt and catch fire: Difference between revisions

restore alphabetical order
imported>Tromp
(diverge in BLC)
imported>Tromp
(restore alphabetical order)
Line 100:
gawk: C:\AWK\HALT_AND_CATCH_FIRE.AWK:5: error: division by zero attempted
</pre>
 
=={{header|C}}==
<syntaxhighlight lang="c">int main(){int a=0, b=0, c=a/b;}</syntaxhighlight>
 
=={{header|Binary Lambda Calculus}}==
Line 115 ⟶ 112:
 
Other runtime errors are possible, but not as easy to use.
 
=={{header|C}}==
<syntaxhighlight lang="c">int main(){int a=0, b=0, c=a/b;}</syntaxhighlight>
 
=={{header|C++}}==
Anonymous user