Answer by
blkconservative (46)
The C++ function prototype has to do with omitting the function body. It specifies what a function does while specifying the function argument. The argument names are optional in a C++ member function prototype. The C++ function prototypes are always used in class definitions. You can specify an interface for a library by placing prototype in a header file.