I get "passing argument 2 of ‘execvp’ from incompatible pointer type" and
expected ‘char * const*’ but argument is of type ‘const char **’
I'm wondering what the correct syntax is? Thanks!


int main(int argc, const char* argv[]) {
  if(argv[0]!=NULL)
    return -1;
  int pid = fork();
  if(pid==0)
    execvp(argv[0],argv+strlen(argv[0]));
  else
    wait();
  return 0;
}

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

exec functions don't accept const char*. In your case, simply change argv to char*, that's the correct prototype.

Btw. argv + strlen(argv[0]) doesn't make any sense, what did you mean by that?

link|improve this answer
Great! Just deleting const seems to have fixed it! However, if I run it with say emacs, it doesn't actually load it. – Josh Apr 27 '11 at 19:10
Actually, the execl family does accept char const*, but the execv variants don't. @Josh: const char* argv[] isn't standard C anyway. – larsmans Apr 27 '11 at 19:11
2  
@Josh Most likely because argv + strlen(argv[0]) doesn't make any sense did you mean argv+1? – Let_Me_Be Apr 27 '11 at 19:13
1  
@larsmans I need some sleep :-/ You are right of course. – Let_Me_Be Apr 27 '11 at 19:16
1  
@Josh argv+1 is &argv[1]. Because a[b] is defined as *(a+b) – Let_Me_Be Apr 28 '11 at 14:25
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.