Jul 26, 2002 #1 Treehouse IS-IT--Management Aug 21, 2002 2 US Is there a way to start executables within my C program? If so how?
Jul 26, 2002 #2 hughLg Programmer Feb 18, 2002 136 MY are you mean that you want to run a executable file (program) within C program? Upvote 0 Downvote
Jul 28, 2002 #3 newmangj Technical User Jun 16, 2002 150 AU Yes, it depends on the operating system and compiler you are running but you should look up the following calls : system() execp (and other exec variations) spawn (if your system supports it) fork and vfork Cheers - Gavin Upvote 0 Downvote
Yes, it depends on the operating system and compiler you are running but you should look up the following calls : system() execp (and other exec variations) spawn (if your system supports it) fork and vfork Cheers - Gavin