Sunday, 11 February 2018

Types of user-defined functions in C++

In this post, you will learn more about user-defined functions and how can you use user-defined functions in different ways? Basically, functions are categorized on the basis of return value and arguments, user-defined functions can be categorized as: Function with no argument and no return value Function with no argument but return value Function with argument but no return value Function with...