Logo

Programming-Idioms

History of Idiom 87 > diff from v21 to v22

Edit summary for version 22 by A:
New C implementation by user [A]

Version 21

2018-05-08, 00:35:14

Version 22

2018-08-12, 11:30:21

Idiom #87 Stop program

Exit immediatly.
If some extra cleanup work is executed by the program runtime (not by the OS itself), describe it.

Idiom #87 Stop program

Exit immediatly.
If some extra cleanup work is executed by the program runtime (not by the OS itself), describe it.

Code
return 0;
Comments bubble
Only works in main(), actually.