#include char cmd[] = "/bin/sh"; char *argv[] = { cmd, NULL }; char *envp[] = { NULL }; int main(void) { execve(cmd, argv, envp); }