C++ Program to Perform Simple Addition Function Using Templates

By | 06.01.2017

Addition Function Using Templates


Write a C++ Program to Perform Simple Addition Function Using Templates. Here’s a Simple C++ Program to Perform Simple Addition Function Using Templates in C++ Programming Language.


What are Templates in C++ ?


Templates are the foundation of generic programming, which involves writing code in a way that is independent of any particular type.

A template is a blueprint or formula for creating a generic class or a function. The library containers like iterators and algorithms are examples of generic programming and have been developed using template concept.

There is a single definition of each container, such as vector, but we can define many different kinds of vectors for example, vector <int> or vector <string>..


Function Template :

The general form of a template function definition is shown here:

template <class type> ret-type func-name(parameter list)

{
// body of function
}


Class Template :

Just as we can define function templates, we can also define class templates. The general form of a generic class declaration is shown here:

template <class type> class class-name

{
.
.
.
}


Below is the source code for C++ Program to Perform Simple Addition Function Using Templates which is successfully compiled and run on Windows System to produce desired output as shown below :


SOURCE CODE : :


/* C++ Program to Perform Simple Addition Function Using Templates  */

#include <iostream>
#include <stdio.h>

using namespace std;

template <class type> type add(type num1, type num2);

int main ()
{
  std::cout << "Please enter integer 1 : ";
  int num1;
  cin >> num1;

  cout << "\nPlease enter integer 2 : ";
  int num2;
  cin >> num2;

   int answer = add(num1, num2);
   cout << "\nThe sum of [ " << num1 << " + " << num2 << " ] = " << answer<<"\n";

   getchar();

    return 0;
}
template <class type> type add(type num1, type num2)
{
    type result = num1 + num2;
  return result;
}

OUTPUT : :


/* C++ Program to Perform Simple Addition Function Using Templates  */

Please enter integer 1 : 12

Please enter integer 2 : 34

The sum of [ 12 + 34 ] = 46

Process returned 0

Above is the source code and output for C++ Program to Perform Simple Addition Function Using Templates which is successfully compiled and run on Windows System to produce desired output.

If you found any error or any queries related to the above program or any questions or reviews , you wanna to ask from us ,you may Contact Us through our contact Page or you can also comment below in the comment section.We will try our best to reach upto you in the short interval.


Thanks for reading the post….

0 0 votes
Article Rating
Category: C++ Programming Template Programs Tags:

About Tunde A

My name is Tunde Ajetomobi, a Tech Enthusiast and Growth Hacker. I enjoy creating helpful content that solves problem across different topics. Codezclub is my way of helping young aspiring programmers and students to hone their skills and find solutions on fundamental programming languages.

Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments