in reply to Calling a Program from a Program

Just use a simple fork and exec e.g
## do stuff fork() and exec "your_program";
This will fork off a child then executes a system command which then assumes the child process (as it were).
HTH

_________
broquaint