0
Why there is use ' int' before 'main'?
2 Answers
0
int main() returns an int(0)
void main() returns nothing
double main() returns a double(0.00)
char main() returns a char('a')
0
Cause you need to return a zero a the end of your program in order to tell the computer that everything in your code executed as expected... it's like a standard...