hi can someone supply me with some unix c code to execue a program called: menu
many thanks,
ed.
Executing A Program Within A Program
RE:Executing A Program Within A Program
One of the exec*() family of functions will do the trick together with a fork().
You can also check out the system() function, which is really a wrapped up (or "stripped down", depending on your disposition) version of the exec*()/fork() combination.
Gnome.
You can also check out the system() function, which is really a wrapped up (or "stripped down", depending on your disposition) version of the exec*()/fork() combination.
Gnome.