Results 1 to 3 of 3
I am usually programming some simple mathematical routines in C (or C++). I would like to automatically run a console application like "gnuplot" while my program is running. Is there ...
- 04-16-2008 #1Just Joined!
- Join Date
- Apr 2008
- Posts
- 2
How to call an external application from a C source
I am usually programming some simple mathematical routines in C (or C++). I would like to automatically run a console application like "gnuplot" while my program is running. Is there a simple way to call external console applications in C programming?
- 04-16-2008 #2
gnuplot
Try the system function
- 04-16-2008 #3Just Joined!
- Join Date
- Apr 2008
- Posts
- 2
Thank you!
A short reply but very useful. I found that it is also possible to use the "exec" commands
exec


Reply With Quote