Computer Science, asked by rahulshome88, 4 months ago

wap to assign the values 7 and 5 to two different values and then interchange them(using third value)​

Answers

Answered by aishunallapati
3

Answer:

int a=7;

int b=5;

int c;

c=a;

a=b;

b=c;

Similar questions