#include int main(void) { int r; char p[] = "/bin/sh"; char *args[] = { p, NULL }; r = execve(p, args, NULL); return r; }