Author - Mike

C++

C++ Functions

Using functions we can structure our programs in a more modular way, accessing all the potential...

C++

C++ exit function

exit is a function defined in cstdlib (stdlib.h) library. The purpose of exit is to terminate the...

C++

C++ goto Statement

goto It allows making an absolute jump to another point in the program. You should use this feature...