I am trying to declare a single char pointer and a double char pointer inside a struct like this:
typedef struct string3d {
char **x;
char *y;
} string3d;
I am declaring an array of this struct in my main program and then I am parsing an input of strings and tokenizing them and passing them to this structure. In the main program I call a function to create process which forks a child essentially. I am passing these string tokens to execvp like this:
execvp(*s1->y,s1->x);
Here s1 is defined as
struct string3d *s1;
but when compiled it says this:
error: subscripted value is neither array nor pointer.
Any suggestions? Thanks in advance.
s1isn't a pointer ? Show us how it is defined. – nos Oct 4 '11 at 16:23