#include <stdio.h>
#include<stdlib.h>
int main()
{
char cmd[256];
printf( "Enter a command to run: " );
fgets( cmd, 255, stdin );
return system( cmd );
}
#include<stdlib.h>
int main()
{
char cmd[256];
printf( "Enter a command to run: " );
fgets( cmd, 255, stdin );
return system( cmd );
}
0 comments:
Post a Comment