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/main_greatest.cpp | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 testapp/c_cpp_files/main_greatest.cpp (limited to 'testapp/c_cpp_files/main_greatest.cpp') diff --git a/testapp/c_cpp_files/main_greatest.cpp b/testapp/c_cpp_files/main_greatest.cpp new file mode 100755 index 0000000..fe9ff5b --- /dev/null +++ b/testapp/c_cpp_files/main_greatest.cpp @@ -0,0 +1,32 @@ +#include +#include + +extern int greatest(int, int, int); + +template + +void check(T expect, T result) +{ + if (expect == result) + { + //printf("Correct:\n Expected %d got %d \n",expect,result); + } + else + { + printf("\nIncorrect:\n Expected %d got %d \n",expect,result); + exit (1); + } +} + +int main(void) +{ + int result; + result = greatest(1, 2, 3); + check(3, result); + result = greatest(5, 9, 2); + check(9, result); + result = greatest(7, 2, 4); + check(7, result); + printf("All Correct\n"); + return 0; +} -- cgit