User profile: R23MJ

User info
User name:R23MJ
Old user name:MrProGamer121
Bio:I'm just another Person in the group.

class Person
{
private:
int mAge;
char *mName;

public:
Person();
Person(char* Name, int Age);

void update();
};
History
Joined:
Number of posts:140
Latest posts:

Find seed used to gen a value
Yes, I would be writing both. I am assuming there is no way to find it without actually storing it p...

Find seed used to gen a value
That's actually useful to know, but sadly I am needing to do this (possibly) in another instance of ...

Find seed used to gen a value
I have been using C++11's new uniform_int_distribution to generate a pseudo-random number, and I was...

Windows CLR app breaks because of Text Box
Please use code tags when providing code, it helps tremendously while reading the code. To format yo...

CreateWindow() Question
Using the pipe character ( | ) you should be able to add several window styles to your function. Tha...