digitalmars.D.learn - main() return code.
- Tony (2/2) Aug 21 2015 Why is it acceptable to specify main as returning void (in
- =?UTF-8?B?QWxpIMOHZWhyZWxp?= (4/6) Aug 21 2015 void in that context means automatically return 0 if main() exits
Why is it acceptable to specify main as returning void (in addition to returning int)?
Aug 21 2015
On 08/21/2015 01:49 AM, Tony wrote:Why is it acceptable to specify main as returning void (in addition to returning int)?void in that context means automatically return 0 if main() exits without exception and non-zero if it exits with exception. Ali
Aug 21 2015