19 lines
201 B
C
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;
|
|
}
|