Hi I have tried to figured out, but it does not work, please help.
I know that I can do this to store char variables like words, but they are constant.
But I was wondering if I can store the same but be able to enter with
cin >> *name; ???? because I know I can store it as an array but only one character like
char name[4] = {'m','o','k','e'};
I was thinking that maybe I could use the pointer to store more than one characters per location.