Advertisement
Felanpro

Template Functions

Apr 23rd, 2016
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. template<class felix>
  6.  
  7. calculator(felix a, felix b)
  8. {
  9.     return a + b;
  10. }
  11.  
  12. int main()
  13. {
  14.     int x=7,y=34,z;
  15.     z = calculator(x,y);
  16.     cout << z << endl;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement