cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
UNIX/Linux Programming
Programmatically calling other processes
Programmatically calling other processes
Jul 28, 2010 at 4:25pm UTC
fafner
(377)
Quick, probably n00bish question: How can I call an external program from within my own program? Like for instance, how does an IDE use an external compiler?
Thanks,
Fafner
Jul 28, 2010 at 6:59pm UTC
jsmith
(5804)
man 2 fork
man 2 exec
also man 3 system, but prefer fork/exec to system.
Topic archived. No new replies allowed.