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»

ANSWER:

the SWAP PROGRAM LOGIC is

a=b;

b=c;

c=a;



Discussion

No Comment Found