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 |
What is union in c?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
If input is 123 then how to print 100 and 20 and 3 seperately?
Difference between linking and loading?
what is event driven software and what is procedural driven software?
what does " calloc" do?
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
Is anything faster than c?
Compare interpreters and compilers.
What is the difference between text files and binary files?
Should I learn data structures in c or python?