I know how to swap 2 variables in c++ , ie you use std::swap(a,b).
question:
Does the C standard library have a similar function to c++ std::swap() or do I have to define it myself.
|
|
There is no equivalent in C - in fact there can't be, as C doesn't have template functions. You will have to write separate functions for all the types you want to swap. |
|||||||||||||||||
|
|
Yes you need to define it yourself.
|
||||
|
|
|
You can do something similar with a macro if you don't mind using a gcc extension to the C language,
|
|||||||||||||
|
|
Another macro not already mentioned here: You don't need to give the type if you give the temporary variable instead. Additionally the comma operator is useful here to avoid the do-while(0) trick. But usually I don't care and simply write the three commands. On the other hand a temporary macro is useful if a and b are more complex.
|
|||
|
|
|
Check your compiler documentation. The compiler may have a Worst case, waste a day and write some generic swap functions. It won't consume a significant amount of your project's schedule. |
|||
|
|