Reply to Re: void( void )
If you don't have an account, just leave the password field blank.
It's not. It's void main().
There shouldn't be a void between the (). It's ANSI C to put it in there, but it's ANSI C++ to not put the void in (in fact, C++ requires main return an int value, by definition - there are ways to get around that though).
There shouldn't be a void between the (). It's ANSI C to put it in there, but it's ANSI C++ to not put the void in (in fact, C++ requires main return an int value, by definition - there are ways to get around that though).