User profile: eraggo

User info
User name:eraggo
Name:Timo Heino
Location:Finland (for someone: near Arctic Circle), Kajaani
Website:http://not.1.yet
Bio:C++ programmer to the heart. I really really like it.
My english is well... in "always training" -mode :P

Want to train bigger audience but don't know how; where to start; big problem

History
Joined:
Number of posts:124
Latest posts:

TicTacToe
Maybe, and just maybe, you should think board as integer array (which is initialized as 0's) so chec...

How do I create a variable that chooses a random number each time I use it.
Small change give you 10 damages: [code]#include <iostream> #include <cstdlib> #include <ctime> usin...

Dynamic Issue
You don't need to use for loop inside destructor. Your array is one dimensional. Just [code]delete ...

Ubntu
You can use any text editor, like Gedit to work with cpp files. Then you can compile on Terminal OR...

PRNG - A question
Lets assume you give for nLow number 5 and nHigh number 10. Rand() % (nHigh-nLow) -> rand() % 5 -> ...