Return 0 statement in C++ programming language |
Return 0 statement in C++;
terminates the main() function and returns a value of 0 to the operating system. This line is optional. C++ compiler will implicitly insert a "return 0;" to the end of the main() function.
0 Comments