fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main() {
  5. // Command to execute the batch file
  6. char command[100];
  7. sprintf(command, "start /B %s\\Etoro.bat", ".");
  8.  
  9. // Execute the command
  10. system(command);
  11.  
  12. return 0;
  13. }
Success #stdin #stdout #stderr 0.01s 5296KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
sh: 1: start: not found