Hi all,
I am trying to point a pointer to another pointer and just failed to get resultm here's my failed code,
char *point[] {
"This is One"
"This is Two"
"This is Three"
};
char *ptr;
ptr = point[2];
printf("%s\n", ptr);
I am getting single space printed out instead of "This is Three"
Am I doing wrong, how should I point ptr to point[3]????
Any Help will be appreciated
Rgds,
Will