Oct 31, 2012 at 11:22am UTC
I've just started this book, and It starts with the program but it does not say what console application to use... I could either choose a CLR Console application or a Win32 console application. (I am using Microsoft Visual C++ 2010 Express)
Does anyone know which one is used in the book?
Oct 31, 2012 at 11:26am UTC
You should probably use Win32 console application . I think CLR has to do with .NET.
Oct 31, 2012 at 11:32am UTC
If you have the third edition, go to page 383 called Appendix A
It will tell you exactly how to set it up
Oct 31, 2012 at 11:34am UTC
I tried that, but just got loads of errors. I also tried the other one. I downloaded the code then just copied and pasted it but it didn't work.
Here is the code I used:
// Game Over
// A first C++ program
#include <iostream>
int main()
{
std::cout << "Game Over!" << std::endl;
return 0;
}
Very simple, anyone know why it's not working?
Oct 31, 2012 at 11:35am UTC
Please tell us what kind of errors you get?
Oct 31, 2012 at 11:44am UTC
Thank you bboy premier. I found exactly what to do. No more help needed.