Answer Posted / devi
i can swap da 2 variables in singe instr
main()
{
int a,b;
a=(a=(a+b),b=(a-b),a-b);
-------
-------
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
Can we initialize extern variable in c?
What is volatile variable in c?
Explain how can I convert a number to a string?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
What is pointer & why it is used?
Why should I use standard library functions instead of writing my own?
What are different storage class specifiers in c?
What is a program flowchart and how does it help in writing a program?
What is the difference between volatile and const volatile?
What is dynamic memory allocation?
Write a program to check prime number in c programming?
What does != Mean in c?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What the advantages of using Unions?