Advertisement
raju02

Templete mix

Jan 13th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. /// Templete Type mix
  2. #include <iostream>
  3. using namespace std;
  4. template <class T>
  5. T print (T a)
  6. {
  7. cout<<a << endl;
  8. }
  9. int main()
  10. {
  11. print("Raihan");
  12. print(5);
  13. print(3.9912);
  14.  
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement