How to open command prompt in windows from C program

1 Answer

0 votes
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char **argv) 
{ 
    system("cmd"); // cmd.exe is in c:\Windows\System32\
    
    return(0);
}

/*
run:

Open command prompt in Windows

*/

 



answered Jun 11, 2015 by avibootz
...