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 are the types of functions in c?
Give differences between - new and malloc() , delete and free() ?
What are data types in c language?
What are the different types of linkage exist in c?
Explain what math functions are available for integers? For floating point?
How many parameters should a function have?
Why do we write return 0 in c?
What is the purpose of ftell?
Are there namespaces in c?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Where does the name "C" come from, anyway?
What is abstract data structure in c?
What is atoi and atof in c?
What is static function in c?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);