Answer Posted / ilana
The target is a<-b b<-c c<- a
------------------------------------
a = a+b+c ; // a+b+c b c
c = c+b; // a+b+c b b+c
b = c-b; // a+b+c c b+c
c = a-c; // a+b+c c a
a = a-(b+c) // b c a
| Is This Answer Correct ? | 12 Yes | 7 No |
Post New Answer View All Answers
What is main () in c?
What is getche() function?
What is scope of variable in c?
What is the purpose of 'register' keyword in c language?
How do I get an accurate error status return from system on ms-dos?
What does %p mean?
Write a program to reverse a given number in c language?
Where are c variables stored in memory?
Explain how can I make sure that my program is the only one accessing a file?
Can we add pointers together?
How can I open files mentioned on the command line, and parse option flags?
Is a pointer a kind of array?
Explain the difference between getch() and getche() in c?
What is the use of function overloading in C?
What is optimization in c?