Update main.c

Slight format change
This commit is contained in:
Kun Deng
2021-02-21 19:24:32 -05:00
committed by GitHub
parent 9dff114a42
commit 715b6cdbc4
-2
View File
@@ -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;