|
| Total Answers and Comments: 4 |
Last Update: August 27, 2008 Asked by: farooq |
|
| | |
|
No best answer available. Please pick the good answer available or submit your answer. | |
June 12, 2006 01:01:35 | #1 |
| rakesh |
|
|
RE: can we use the swapping function in one statement?...
| yes we can do it void swap(int *a int *b){a a+b; b a-b;a a-b;} just call this function as swap(a b); swapping has done bye.. |  | | Is this answer useful? Yes | No | | |
|
| |
|
July 24, 2006 14:42:17 | #2 |
| ratnesh |
|
Member Since: July 2006 Contribution: 2 |
RE: can we use the swapping function in one statement?...
| yes we can do it.. just call following function swap(int a int b){a a^b;b a^b;a a^b;} |  | | Is this answer useful? Yes | No | | |
|
| |
Go To Top
|