Write a program to exchange two variaables without temp
Answer Posted / suman ambardar
x=x+y
y=x-y
x=x-y
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what is the difference between the expression '++a' and 'a++'?
What are the different types of errors?
What is this infamous null pointer, anyway?
What is an array in c?
Why calloc is better than malloc?
Can a void pointer point to a function?
What is file in c language?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What is the difference between declaring a variable by constant keyword and #define ing that variable?
How do I copy files?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
Can a program have two main functions?
Why is c so popular?
What is the Purpose of 'extern' keyword in a function declaration?
What are the functions to open and close file in c language?