- 2
Why we use return 0; at the bottom of c program.
2 Réponses
+ 8
It is because you have declared the main function as:
int main(){
//do code
//note that the return value must be an integer
//hence you must return an integer, anything can
return 0;
return 1;
return 2184304;
//all 3 above are valid}
+ 4
something similar
https://www.sololearn.com/Discuss/994841/?ref=app