Helllo everybody,
I have this example code:
pid = fork();
if (pid == 0) {
execvp(argv[2],&argv[2]);
perror("Error");
}else {
wait(NULL);
}
From man exec I understand that
" The first argument, by convention, should point to the filename associated with the file being executed".
So, if I execute my program this way:
./a.out 5 ls
The command ls will be executed.
What about the second argument? the manual says
"The array of pointers must be terminated by a NULL pointer"
and I don't see a NULL pointer here nor I understan what is the function of &argv[2] here.
Thank you very much!
