Dear customer,
It is better to use int main, as it is classical c/c++ statement. This type requires the 'return' statement.
Void main does not, and it is considered its main advantage, but not all the compilers can work with it. Some give errors, some give warnings, some does not give either.
Float main is the different story. It requires the return statement, but the program assumes you're returning integer value, and converts it from floating value to integer. And again, not every compiler can work with it.
Comments
Leave a comment