I started the Accelerated C++ book on the reading list, and I typed in the Hello World program into VC++ 2008. This is my first time using VC ++ 2008. When I build the project, it tells me
unresolved external symbol [EMAIL PROTECTED] reference in function ___tmainCRTStartup The program I typed in does not have a function WinMain, just an int main. On VC++ 6.0 I had an option to crate a console-mode application. Is this option not available anymore? I can't seem to find it. Should I change int main() to int WinMain()? Would that work?
