我有两个程序,其中一个通过execl调用了另一个程序,但是它没有启动。
这是调用程序:
#include <stdio.h>
#include <unistd.h>
int main(int argc, int *argv[])
{
printf("Program %s executes", argv[0]);
execl("hello", " ", "Hello", "World!", NULL);
return 0;
}
“ hello”程序:
#include <stdio.h>
int main(int argc, char *argv[])
{
int i=1;
printf("%s\n",argv[0]);
printf("Program started and got string : ");
while(argv[i++] != NULL)
printf("%s ",argv[i]);
return 0;
}