From c82fc788bc053da5bb7d8acb1de939b4b3c62eb8 Mon Sep 17 00:00:00 2001 From: Vicky-Raghuwanshi <67050782+Vicky-Raghuwanshi@users.noreply.github.com> Date: Sat, 17 Oct 2020 00:42:25 +0530 Subject: [PATCH] Update and rename C/C_largest.c to C_swap2_modified.c --- C/C_largest.c => C_swap2_modified.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) rename C/C_largest.c => C_swap2_modified.c (90%) diff --git a/C/C_largest.c b/C_swap2_modified.c similarity index 90% rename from C/C_largest.c rename to C_swap2_modified.c index 9ea244c..0b0d43a 100644 --- a/C/C_largest.c +++ b/C_swap2_modified.c @@ -1,6 +1,7 @@ #include +#include int main() -{ +{ clrscr(); double n1, n2, n3; printf("Enter three different numbers: "); @@ -16,4 +17,5 @@ int main() printf("%.2f is the largest number.", n3); return 0; + getch(); }