Create a function called swap ( ) that inter
changes the values of two arguments sent to
it. Make the function a template function so
that it can be used with any numerical data type.
Answers
Answered by
0
Answer:
the swap program logic is
a=b;
b=c;
c=a;
Similar questions