Programmatically calling other processes

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
man 2 fork
man 2 exec

also man 3 system, but prefer fork/exec to system.

Topic archived. No new replies allowed.