Functions in C++
In a C++ programming language a function is a group of statements that together perform a special task. Every C++ program has at least one function, which is main(). In a C++ library has a numerous predefined or built-in functions. For example, strcat() to concatenate two strings, main() from where program execution starts. In a C++ programming function … Read more