1.

Write a program to interchangethe value of two number with out using third number​

Answer»

Answer:

include

int main()

{

int a=10, b=20;

PRINTF("Before SWAP a=%d b=%d",a,b);

a=a+b;//a=30 (10+20)

b=a-b;//b=10 (30-20)

a=a-b;//a=20 (30-10)



Discussion

No Comment Found