Write a program to exchange two variaables without temp
Answer Posted / vijay
main()
{
int a, b;
a=a+b;
b=a-b;
a=a-b;
}
| Is This Answer Correct ? | 24 Yes | 5 No |
Post New Answer View All Answers
What is #line?
How does selection sort work in c?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
What are the restrictions of a modulus operator?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
Describe static function with its usage?
What is a pointer in c plus plus?
What is queue in c?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
Explain what does the function toupper() do?
What is class and object in c?
Is array name a pointer?
Explain main function in c?
If fflush wont work, what can I use to flush input?
What does the && operator do in a program code?