Quote:
quote:void main(void)
||
void main()
Are premissable C++ entry points.
|
Quote:
quote:void main(int argc, char **argv)
...
void main(void)
...
are valid C++ constructs.
|
Your claim that using void as the return type is allowed under the C++ standard is clearly erroneous.
Quote:
quote:
int main()
{
return 0;
}
Isn't that the correct way to actually do that? Just wondering
|
Yes.