so i've created a function that deals with a array of char pointers by using the [] operators. the function
int fetchargs(char **argv){
argv[0][0] = 'A';
};
will result in segmentation fault. i pass a array of character pointers that was initialized as follow
char argv[ARG_NUM][MAX_LINE];
trying to figure out the cause,but with not success
what might be the issuse?