hey guys how are u today?
btw my program seem to have lil prob.
my function determineLevel seems cant be called.
it give undeclared error.
anyone have idea?
thank u in advance and merry Christmas!
I'd like to draw your attention to line 38: you don't pass in a parameter, do you?
Parameter list is a part of a function's signature. Be sure to get it right.
Also, if all of the codes are in one single file, I doubt it will work even if you correct the mistake above.
In C++, before you use something, you always need to make sure that you've already declared it (or have already defined it).
Check your code again.