wat are the two methods for swapping two numbers without
using temp variable??
Answer Posted / abhishek karnani
int a=10,b=5;
a=a+b-(b=a);
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
Explain what is the heap?
What is function what are the types of function?
Describe wild pointers in c?
Explain how can I convert a number to a string?
Explain what are the advantages and disadvantages of a heap?
What is static volatile in c?
What is difference between scanf and gets?
What is calloc malloc realloc in c?
What is table lookup in c?
What is size of union in c?
Where does the name "C" come from, anyway?
how many errors in c explain deply
What is define c?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above