Saved Bookmarks
| 1. |
Create a function called swap ( ) that interchanges the values of two arguments sent toit. Make the function a template function sothat it can be used with any numerical data type. |
|
Answer» a=b; b=c; c=a; |
|