Need help with doing the following assignment in C++
Bucky Template Lab #1 #include <iostream» using namespace std,: 1 2 3 template <class bucky> 5 6 bucky addCrap (bucky a, bucky b) return a+b; 9 10 Eint main int x-7, y-43, z; z-addCrap (x, y): cout << z << endl: 12 13 14 15 Implement the above code and add examples using double, char, string. Call addCrap with the added data type examples Upload the code
OR
OR