From cda42dd309c8615cbd2373e6813c8326da9bd8f8 Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Tue, 26 Jan 2021 22:03:50 -0500 Subject: [PATCH] Left off on exercice 4-14 --- ch_04/exercise_04-14/main_template.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ch_04/exercise_04-14/main_template.c diff --git a/ch_04/exercise_04-14/main_template.c b/ch_04/exercise_04-14/main_template.c new file mode 100644 index 0000000..2604c61 --- /dev/null +++ b/ch_04/exercise_04-14/main_template.c @@ -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; +}