I am once again getting confused with functions and arrays in C++.
I am trying to write a program that collects three values from a user, then displays those and does various things with them. In short, what's the problem with this line of code right here?
player = numPlayers(int[NUMPLAYERS]);
I am getting a parse error before '['. NUMPLAYERS is a const interger and numPlayers is a function that is being called.
Any help would be appreciated. Thank You!