User profile: pnoid

User info
User name:pnoid
History
Joined:
Number of posts:11
Latest posts:

Visual C++ Express 2010
Build an empty project, not a win32 project. Then you won't get those errors.

Bug in rand()
You have to seed it. It's not a bug, rand() doesn't give random numbers by itself, you need to pair ...

Please help with my first program!!
[quote]You need stdafx.h if you're using MS Visual Studio. Codeblock doesn't need it. [/quote] You ...

How to determine winner in my Tic Tac Toe program
[code] if (spot[0] && spot[1] && spot[2] == 'X') return true; else if(spot[3] && spot[4] && s...

Having some issues with an IF statement within a WHILE statement
[code]if (answer == 'Q')[/code] I think this is what you were trying to do. There are other probl...