Is there a way to create a new shell or terminal box within a C Program,
something like
Code:
    char *string[MAX];
    strcpy(&string, "sh");
    system(string);
but I want it to create a completely new terminal window?