Files
learning_c/ch_04/exercise_04-14/main_template.c
T
2021-01-26 22:03:50 -05:00

19 lines
201 B
C

/*
*
* Exercise 4-14. Define a macro swap(t,x,y) that interchanges two arguments of type t.
*
* Author: Kun Deng
*/
// Macro definition
// #define swap(t, x, y)
int main()
{
return 0;
}