paramecula
Technical User
This is my first VC++ app, so apologies for the stupid question.
In my app, I want to call various user-defined functions. When I try to compile, I'm getting a 'undeclared identifier' error for each function call. From what I've read, I have to declare the function before I use it, but where do I do this and how ?
The VC++ books I have don't address this and the C++ ones say to declare it before int main() function, which doesn't seem to apply to VC++.
Any help appreciated
In my app, I want to call various user-defined functions. When I try to compile, I'm getting a 'undeclared identifier' error for each function call. From what I've read, I have to declare the function before I use it, but where do I do this and how ?
The VC++ books I have don't address this and the C++ ones say to declare it before int main() function, which doesn't seem to apply to VC++.
Any help appreciated