how to swap 4 number without using temporary number?
Answers were Sorted based on User's Feedback
Answer / 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 |
Explain the use of 'auto' keyword in c programming?
What is merge sort in c?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
Are enumerations really portable?
What are pointers really good for, anyway?
how can we use static and extern?and where can we use this?
What is the general form of a C program?
Differentiate between full, complete & perfect binary trees.
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
Explain how can I pad a string to a known length?
How can you find out how much memory is available?