1
I wonder how I could run an external file (a .bat, for example) from a C algorithm.
1
I wonder how I could run an external file (a .bat, for example) from a C algorithm.
1
It’s very simple, if you’re in the same directory just call it that:
system("nome.bat");
or you can call with the full path too, for example:
system("C:\\Users\\Lucas\\Desktop\\teste.bat");
Browser other questions tagged c
You are not signed in. Login or sign up in order to post.
It worked out right here! Fight, man!
– Jp_0733