write a program to swap Two numbers without using temp variable.
Answer Posted / nikhil gupta
# 2 a=a+b;
b=a-b;
a=a-b;
| Is This Answer Correct ? | 23 Yes | 7 No |
Post New Answer View All Answers
Write a Program to find whether the given number or string is palindrome.
How many types of operators are there in c?
What is an lvalue in c?
Are pointers really faster than arrays?
What does the error message "DGROUP exceeds 64K" mean?
What are the different types of control structures in programming?
What is a char in c?
Why is c fast?
How can you avoid including a header more than once?
How many levels of pointers have?
How can you restore a redirected standard stream?
Write a program that accept anumber in words
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Is malloc memset faster than calloc?
What are the uses of null pointers?