Jul 26, 2002 #1 Treehouse IS-IT--Management Joined Aug 21, 2002 Messages 2 Location US Is there a way to start executables within my C program? If so how?
Jul 26, 2002 #2 hughLg Programmer Joined Feb 18, 2002 Messages 136 Location 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 Joined Jun 16, 2002 Messages 150 Location 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