wap to assign the values 7 and 5 to two different values and then interchange them(using third value)
Answers
Answered by
3
Answer:
int a=7;
int b=5;
int c;
c=a;
a=b;
b=c;
Similar questions