this is part of my code, and in this part, i encountered this problem
at line 15, it gave the errors:
Error 1 error C2143: syntax error : missing ')' before 'const'
Error 2 error C2660: 'AddWithLongestFirst' : function does not take 0 arguments
Error 3 error C2059: syntax error : ')'
does anyone know why its like that?
the rest of my codes. the program purpose is to ask the user to input some number twice and i would put them into an array. the number would them be added, subtract, divide and multiply.
right now i am doing the adding part and bool AddLargeInt purpose is to set bool AddWithLongestFirst value by determining num1 or num2 is larger.
and similar for the other call. You shouldn't place the parameter types in function calls. Also, be sure to return a value from the AddLargeInt function.