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
why wipro wase
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
List a few unconditional control statement in c.
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
Why do we use namespace feature?
What is the explanation for cyclic nature of data types in c?
Difference between pass by reference and pass by value?
What are global variables and explain how do you declare them?
How will you find a duplicate number in a array without negating the nos ?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
Which function in C can be used to append a string to another string?
What is the main difference between calloc () and malloc ()?