Thursday, August 11, 2011

C++ Error C2065 undeclared identifier with array?

elect_votes and state_name are local to the function stateInfo( ). They are not known outside this function. Try declaring them outside of all functions (at the top, where you have declared other things).

No comments:

Post a Comment