summaryrefslogtreecommitdiff
path: root/testapp/c_cpp_files/main_mean.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'testapp/c_cpp_files/main_mean.cpp')
-rwxr-xr-xtestapp/c_cpp_files/main_mean.cpp10
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;