Besides i prefer to write the following #define which is generic and works 
in all case, i.e., it doesn't matter whether you pass pointers, float, int, 
etc;

*#define swap( a, b )    size_t t; t = a; a = b; b = t;*

1 more thing now you don't have to pass any other information i.e., whether 
your arguments are int, float *, etc. 

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/algogeeks/-/uCkZLzW-Qy8J.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to