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 an endless loop?
Is c procedural or object oriented?
I have a varargs function which accepts a float parameter?
What is non linear data structure in c?
main() { printf("hello"); fork(); }
Which built-in library function can be used to match a patter from the string?
What is time complexity c?
Can you think of a logic behind the game minesweeper.
What is wrong in this statement? scanf(ā%dā,whatnumber);
How can I recover the file name given an open stream?
Explain how do you view the path?
Explain enumerated types.
any "C" function by default returns an a) int value b) float value c) char value d) a & b
What are inbuilt functions in c?
What is the difference between array and pointer in c?