diff options
Diffstat (limited to 'testapp/c_cpp_files/main_array_check_all.cpp')
-rwxr-xr-x | testapp/c_cpp_files/main_array_check_all.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testapp/c_cpp_files/main_array_check_all.cpp b/testapp/c_cpp_files/main_array_check_all.cpp index fc740a9..140578e 100755 --- a/testapp/c_cpp_files/main_array_check_all.cpp +++ b/testapp/c_cpp_files/main_array_check_all.cpp @@ -21,13 +21,13 @@ void check(T expect,T result) int main(void) { bool result; - int a[] = {1,2,3,2,8}; + int a[] = {1,2,3,2,8}; result = array_check_all(a); - printf("Input submitted to the function: {1, 2, 3, 2, 8}"); + printf("Input submitted to the function: {1, 2, 3, 2, 8}"); check(false, result); int b[] = {4,2,32,4,56}; - result = array_check_all(b); - printf("Input submitted to the function: {4, 2, 32, 4, 56}"); + result = array_check_all(b); + printf("Input submitted to the function: {4, 2, 32, 4, 56}"); check(true, result); printf("All Correct\n"); return 0; |