From 715b6cdbc46b66864a665c9b2bc8fb8538aae989 Mon Sep 17 00:00:00 2001 From: Kun Deng Date: Sun, 21 Feb 2021 19:24:32 -0500 Subject: [PATCH] Update main.c Slight format change --- ch_04/exercise_04-14/main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ch_04/exercise_04-14/main.c b/ch_04/exercise_04-14/main.c index 55073e3..06fd8c1 100644 --- a/ch_04/exercise_04-14/main.c +++ b/ch_04/exercise_04-14/main.c @@ -27,9 +27,7 @@ int main() int x_int = 10, y_int = 25; print_pair(x_int, y_int, "Before"); - swap(int, x_int, y_int); - print_pair(x_int, y_int, "After"); float x_double = 99.99, y_double = 8.55;