Issues learning C++Go back to unknowncheats and download other peoples scripts and hacks. I don't think you have the mo...
Random numbers and if-else statementsHey admkrk [code]srand(static_cast<signed int>(time(0)));[/code] Will get you -2147483648 to 214748...
When do you not use #include <iostream>, using namescape std and int main()?You don't use int main when you work on WinAPI applications. When you work on those, you'll type int...
Next stepWere you typing what they were typing word for word, or were you making your own little program as y...
Random numbers and if-else statementsOk so first, I would change [code]srand(time(0))[/code] to [code]srand(static_cast<signed int>(time(...