379_demos/lab1/demos/execve.c

11 lines
159 B
C
Raw Normal View History

2024-09-24 13:34:24 -06:00
#include <stdio.h>
#include <unistd.h>
int main(void) {
char *args[] = {"fork", NULL};
execve("fork", args, NULL);
printf("End of execve\n");
}