write a program to swap Two numbers without using temp variable.
Answer Posted / chandan
a=a+b;
b=a-b;
a=a-b;
| Is This Answer Correct ? | 1400 Yes | 158 No |
Post New Answer View All Answers
How do you declare a variable that will hold string values?
What is the advantage of c?
Write a program to swap two numbers without using third variable in c?
Tell me the use of bit field in c language?
what is the structure pointer?
What are volatile variables in c?
Is sizeof a keyword in c?
c program for searching a student details among 10 student details
Explain spaghetti programming?
Is it possible to have a function as a parameter in another function?
What are the application of void data type in c?
regarding pointers concept
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What’s a signal? Explain what do I use signals for?
explain what is an endless loop?