Return 0 statement in C++ programming language, Use of return 0; statement in C++

Return 0 statement in C++ programming language
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.

Post a Comment

0 Comments