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 |
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is unary operator?
how to write a prog in c to convert decimal number into binary by using recursen function,
In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
What is the role of this pointer?
What is derived datatype in c?
Can we initialize extern variable in c?
write a program for 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 2 2 2 2 2 2 3 3 3 3 4 4
Hai why 'c' is the middle language
given post order,in order construct the corresponding binary tree
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
Explain what is the stack?