summaryrefslogtreecommitdiff
path: root/testapp/c_cpp_files/main_mean.cpp
diff options
context:
space:
mode:
authorprathamesh2014-06-05 15:08:55 +0530
committerprathamesh2014-06-05 15:08:55 +0530
commite84e28166b085781c69326ae4feb936d3f6a9ded (patch)
tree82d03d3eb656f2d1fb44587581768136e64decc2 /testapp/c_cpp_files/main_mean.cpp
parentfa1cdf5c8f92715f2b3866f0a17e2439d27557c5 (diff)
downloadonline_test-e84e28166b085781c69326ae4feb936d3f6a9ded.tar.gz
online_test-e84e28166b085781c69326ae4feb936d3f6a9ded.tar.bz2
online_test-e84e28166b085781c69326ae4feb936d3f6a9ded.zip
main files indented.
comments removed from views file
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;