summaryrefslogtreecommitdiff
path: root/testapp/c_cpp_files/greatest.c
diff options
context:
space:
mode:
Diffstat (limited to 'testapp/c_cpp_files/greatest.c')
-rw-r--r--testapp/c_cpp_files/greatest.c15
1 files changed, 0 insertions, 15 deletions
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;
- }
-}