In most cases int main()
does not return anything, it doesn't even have to since no return
would not give an error. So why does main have to return an int? Why is void main not possible?
EDIT: I meant, why is int main() the standard if there usually is no return
?