how to swap two integers 1 and 32767 without using third
variable
Answer Posted / pandi
a=1;
b=32767;
a=a+b;
b=a-b;
a=a-b;
| Is This Answer Correct ? | 43 Yes | 7 No |
Post New Answer View All Answers
Explain about C function prototype?
Do pointers take up memory?
What is the difference between volatile and const volatile?
What is the difference between int main and void main?
How do I read the arrow keys? What about function keys?
What are predefined functions in c?
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 is the use of typedef in c?
What are the two types of structure?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
What is c programming structure?
What is pointer to pointer in c language?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
How many types of sorting are there in c?
What is printf () in c?