diff options
author | prathamesh | 2014-06-05 17:52:48 +0530 |
---|---|---|
committer | prathamesh | 2014-06-05 17:52:48 +0530 |
commit | 2ab7f5c798993e06fc35a95e5acda990cb7d2546 (patch) | |
tree | 8f385a3e36fc86b9237107f67122362c49220082 /testapp/c_cpp_files/main_mean.cpp | |
parent | 32e019a07de1f9e819e9c1531c50166289c76cb9 (diff) | |
parent | 18cd0fa1def34bb320f38062596789f745bee530 (diff) | |
download | online_test-2ab7f5c798993e06fc35a95e5acda990cb7d2546.tar.gz online_test-2ab7f5c798993e06fc35a95e5acda990cb7d2546.tar.bz2 online_test-2ab7f5c798993e06fc35a95e5acda990cb7d2546.zip |
Merge branch 'deploy_server'
Diffstat (limited to 'testapp/c_cpp_files/main_mean.cpp')
-rwxr-xr-x | testapp/c_cpp_files/main_mean.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/testapp/c_cpp_files/main_mean.cpp b/testapp/c_cpp_files/main_mean.cpp index f23db68..21a4b1a 100755 --- a/testapp/c_cpp_files/main_mean.cpp +++ b/testapp/c_cpp_files/main_mean.cpp @@ -21,17 +21,17 @@ void check(T expect, T result) int main(void) { bool result; - result = mean(11, 11, 11); - printf("Input submitted to the function: 11, 121, 11"); + result = mean(11, 11, 11); + printf("Input submitted to the function: 11, 121, 11"); check(true, result); result = mean(16, 12, 9); - printf("Input submitted to the function: 16, 144, 9"); + printf("Input submitted to the function: 16, 144, 9"); check(true, result); result = mean(19, 221, 9); - printf("Input submitted to the function: 19, 221, 9"); + printf("Input submitted to the function: 19, 221, 9"); check(false, result); result = mean(34, 12, 3); - printf("Input submitted to the function: 11, 121, 11"); + printf("Input submitted to the function: 11, 121, 11"); check(false, result); printf("All Correct\n"); return 0; |