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 |
I have a function which accepts a pointer to an int. How can I pass a constant like 5 to it?
Write a program with dynamically allocation of variable.
What does it mean when the linker says that _end is undefined?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
what does ‘#include’ mean?
what is Array?
How to write a program to receive an integer & find its octal equivalent by using for loop?
Explain setjmp()?
Sir i need notes for structure,functions,pointers in c language can you help me please
What is the difference between struct and union in C?
What is the difference between union and anonymous union?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it