- cross-posted to:
- [email protected]
- cross-posted to:
- [email protected]
You must log in or register to comment.
Strictly speaking, it should be
Unsafe block syntax in C++
{ ...}
That is why I use just
int main()
without arguments instead.Any
void main()
enjoyers?besides not requiring a return value, what difference does it make?
It will also give an error if you try to add a return value anyways.
@stebo02 @Bogus5553 Neither of them require a return value, but
void main
isn’t legal C++.yeah I thought so, does it work in C?
while (true)