-
I Need Help!!!
Hello any friendly programmers out there,
I am trying to do my final project for programming class and i can not get my final project to work because the initializer (.h) program wont work, the error says:
Undefined symbol: _main in Project: casino.mcp, Target: C++ Console App Debug maincrt.obj.
I someone out there can tell me what his error means... and how to solve it...i would really appreciate it...thanks kyle
-
It means you didn't provide a main() function - you should know this if you've got to the stage of final project
Code:
int main ( ) {
cout << "Good - now add code to call the rest of your prog" << endl;
return 0;
}