Answers for "program c in command line"

C
2

run a command in cmd with c

//C library statement
#include <stdlib.h>

//Driver program
int main(void)
{
	//The C command to run a command in cmd
	system("Your command here");
}
Posted by: Guest on December-15-2020

Code answers related to "program c in command line"

Code answers related to "C"

Browse Popular Code Answers by Language