[Solved] how to control one program from other

Well, your starting sentence was: “I have seen trainers for games which can set health of player and spawn cars etc. I want to make something similar to that.” Here’s a very nice reference code that does what you talked about in C++ http://www.codeproject.com/Articles/7468/Game-Wizard First strengthen your C++ skills and then study what he does … Read more

[Solved] Dereferencing a double-level pointer results in different behaviour from dereferencing a single-level pointer

They are very different things. An int** is a pointer to a pointer to an int. If you dereference it, you get an int*. An int* is a pointer to an int. If you dereference it, you get an int. In the first example, you pass an int** with value 0x4df73c as the first argument … Read more