User profile: newatthis

User info
User name:newatthis
History
Joined:
Number of posts:14
Latest posts:

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 statements
Hey 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 step
Were you typing what they were typing word for word, or were you making your own little program as y...

Random numbers and if-else statements
Ok so first, I would change [code]srand(time(0))[/code] to [code]srand(static_cast<signed int>(time(...