how to swap 4 number without using temporary number?
Answer Posted / brinda balakrishnan
a=a+b+c+d;
b=a-(b+c+d);
c=a-(b+c+d);
d=a-(b+c+d);
a=a-(b+c+d);
| Is This Answer Correct ? | 25 Yes | 0 No |
Post New Answer View All Answers
What is the difference between typedef and #define?
What is string concatenation in c?
When a c file is executed there are many files that are automatically opened what are they files?
What is #include stdlib h?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
in linking some of os executables are linking name some of them
Can 'this' pointer by used in the constructor?
What is a const pointer in c?
Write a program to print ASCII code for a given digit.
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
Explain About fork()?
What is difference between %d and %i in c?
What is difference between structure and union?
What is the difference between single charater constant and string constant?
how do you execute a c program in unix.