From 041064618c290b50bd7ea213c4535b1f585d0f03 Mon Sep 17 00:00:00 2001 From: prathamesh Date: Wed, 5 Jun 2013 17:28:58 +0530 Subject: c_cpp_files --- testapp/c_cpp_files/greatest.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create 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 new file mode 100644 index 0000000..0194855 --- /dev/null +++ b/testapp/c_cpp_files/greatest.c @@ -0,0 +1,15 @@ +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