run a command in cmd with c

#include <stdlib.h>

int main() {
    system("your_command_here");
    return 0;
}