... but you are expecting the user to enter a word (multiple chars).
Lines 21 on I don't know what you are trying to do. If z, x, and v were allocated correctly to hold words (strings), then you could simply output z, x, and v separated by spaces. There is no need to store them into a void* array (guru) and output from there.
The output problem is caused by line 32, you don't need the * there, cout << papa; will display the entire C string cout << *papa; will display only the first character of it
What I'm trying to do is build an array that holds pointers to strings(words). This can give me a possibility to operate on them during the runtime later on in some bigger program . :-)
I'm pretty new in C++ and I don't understand vector's yet ( I'm in a half way of "C++ Language Tutorial") but I be back in a week time and see what you give me :D thx jsmith