Halt and catch fire: Difference between revisions

Content added Content deleted
imported>Tromp
(diverge in BLC)
imported>Tromp
(restore alphabetical order)
Line 100: Line 100:
gawk: C:\AWK\HALT_AND_CATCH_FIRE.AWK:5: error: division by zero attempted
gawk: C:\AWK\HALT_AND_CATCH_FIRE.AWK:5: error: division by zero attempted
</pre>
</pre>

=={{header|C}}==
<syntaxhighlight lang="c">int main(){int a=0, b=0, c=a/b;}</syntaxhighlight>


=={{header|Binary Lambda Calculus}}==
=={{header|Binary Lambda Calculus}}==
Line 115: Line 112:


Other runtime errors are possible, but not as easy to use.
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++}}==
=={{header|C++}}==