What Is The Difference Between exit(0) and exit(1)?
The exit() is a method or function used in C and C++ programming languages in order to exit from the current execution. The exit()generally used to end the current application and program by providing some state information to the caller. exit() Syntax The exit() has the following syntax where it can accept single parameter which … Read more