From 8a3016a88af5c4a09e8b5683f1e305e9100f3562 Mon Sep 17 00:00:00 2001 From: prathamesh Date: Tue, 2 Jul 2013 12:25:33 +0530 Subject: c files moved --- testapp/c_cpp_files/greatest.c | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 testapp/c_cpp_files/greatest.c (limited to 'testapp/c_cpp_files/greatest.c') diff --git a/testapp/c_cpp_files/greatest.c b/testapp/c_cpp_files/greatest.c deleted file mode 100644 index 0194855..0000000 --- a/testapp/c_cpp_files/greatest.c +++ /dev/null @@ -1,15 +0,0 @@ -int greatest(int a,int b,int c) -{ - if(a>b && a>c) - { - return a; - } - else if(b>c) - { - return b; - } - else - { - return c; - } -} -- cgit