Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!utgpu!water!watnot!watmath!clyde!rutgers!princeton!allegra!alice!ark From: ark@alice.UUCP Newsgroups: comp.lang.c Subject: Re: Fork and Exec Message-ID: <6770@alice.uUCp> Date: Wed, 1-Apr-87 15:14:48 EST Article-I.D.: alice.6770 Posted: Wed Apr 1 15:14:48 1987 Date-Received: Sat, 4-Apr-87 09:19:39 EST References: <6635@brl-adm.ARPA> Organization: AT&T Bell Laboratories, Liberty Corner NJ Lines: 6 In article <6635@brl-adm.ARPA>, bagpiper@csvax.caltech.edu writes: > What is the difference between fork and exec in a unix environment and > furthermore how does that map into a MS-Dos environment?? Fork creates a new process. Exec replaces the contents of the current process' memory without creating a new process.