0
main function
What's the difference between int Mainand void main in C++
2 Respuestas
+ 7
int main returns an exit value of zero means the program run successfully. most cpp compilers will generate an error or warning if there is no return statement.
0
hi