379_demos/lab1/demos/execve.c
2024-09-24 13:34:24 -06:00

10 lines
159 B
C

#include <stdio.h>
#include <unistd.h>
int main(void) {
char *args[] = {"fork", NULL};
execve("fork", args, NULL);
printf("End of execve\n");
}