Subj : Re: Run an external binary code To : borland.public.cpp.borlandcpp From : maeder@glue.ch (Thomas Maeder [TeamB]) Date : Sun Aug 17 2003 11:38 am "Henry" writes: > How can I run an external binary code (from file and from memory) through my > C++ program. I wouldn't know of how to do it from memory; and I don't know why I would want binary code to be started from memory. To start another executable, you can use the Standard C and C++ Library function system() or the POSIX Standard functions whose names start with exec (execl, execlp etc.) .