I could really use some help via teamviewer.
I am trying to get into C++ and start doing projects etc. but my visual 2012 express just isn't setup correctly.
If someone could show me the basics of how to test my code etc. as I'm struggling it would be very much appreciated.
On your start page, select New Project ---> Select win32
----> Select win32 console application (not win32 project)
----> select application settings ----> Fill console application (not windows application) and fill empty project.
Now enter your code :
1 2 3 4 5 6 7 8 9 10
//C Game over example
//demonstrates using a directive
#include <iostream>
usingnamespace std;
int main ()
{
cout << "Game Over! << endl;
return 0;
}
There is a likelihood your VS2012 isn't setup correctly or not update to date with the version of OS you are currently using. Obviously your code is correct, hence, the problem is from the IDE. In fact, a code like yours is a simple test of a working IDE. So, either correct the setup problem or turn to another IDE.