#include <unistd.h> char * cmd[] = { "/bin/sh", NULL };int main(int argc, const char *argv[]){ execve(cmd[0], cmd, NULL); return 0;}