Left off on exercice 4-14

This commit is contained in:
kdeng00
2021-01-26 22:03:50 -05:00
parent 47e0041c86
commit cda42dd309
+18
View File
@@ -0,0 +1,18 @@
/*
*
* 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;
}