Hello. I need to make a pointer char point to a memory location that holds a phrase, in C.
I'm doing this:
char *ptr;
char array[3] = {'o','l','a'};
ptr = &array;
But I do not understand what's wrong, I also do not know how to...
asked by
09.10.2017 / 22:55