vote up 0 vote down star

This is with reference to the below question

http://stackoverflow.com/questions/70842/execute-program-from-within-a-c-program

How do I do the same on windows with Tiny C Compiler? I need to execute a .exe fro c program and give input to it from within the same C program by using a file or string as source and read the output from it into a string or file.I have been using system() frunction. Any suggesstions or examples are welcome..Thanks in advance

flag

71% accept rate

2 Answers

vote up 2 vote down check

The simplest way if you don't have popen() etc, or you want to avoid the complexity, is to simplly write a data file eg. infile with fwrite() execute the external program with system() and then read outfile.

system("prog.exe <infile >outfile")

Your prog.exe only has to read stdin and write stdout.

This way you can easily test it with the contents of in/out file. You would normally do this in your tmp directory and then delete them when you are finished.

The only thing to be careful of is the path to the .exe

link|flag
Thank you very much. – Coder Jun 4 at 12:25
vote up 1 vote down

Google for "windows popen" and you find this link:

lists.trolltech.com/qt-interest/1999-09/thread00282-0.html

The C runtime library also has _popen(), but I would recommend against it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.