
Function Templates in C++
Templates in C++: Writing a function or a class that can work for family of functions or classes is known as generic programming. C++ supports this concept with the feature known as templates. Function Template: Writing a function that can […]