how to swap 4 number without using temporary number?
Answer Posted / sandeep
a=a^b;
b=a^b;
a=a^b;
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is use of null pointer in c?
What is the purpose of sprintf() function?
What is variable declaration and definition in c?
Which header file is essential for using strcmp function?
What are the different types of errors?
What is s in c?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
Is main is user defined function?
Explain the use of fflush() function?
Are the variables argc and argv are local to main?
Explain how can a program be made to print the line number where an error occurs?
What is malloc() function?
What are the three constants used in c?
Can an array be an Ivalue?