. Explain the differences between fork() and exec() in C
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
1. fork(): Creates a new process (child) identical to the parent process.
2. exec(): Replaces the current process image with a new program.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
1. fork(): Creates a new process (child) identical to the parent process.
2. exec(): Replaces the current process image with a new program.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is a #include preprocessor?
How can I send mail from within a c program?
Tell me the use of bit field in c language?
how to find sum of 5 digits in C?
Does c have an equivalent to pascals with statement?
what is an inline fuction??
logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............
what is the difference between 123 and 0123 in c?
what is the difference between entry control and exit control statement?
12 Answers Darbari Lal DAV Model School,
How can we see the Expanded source code and compiled code for our source program in C?
In CMM or CMMI certified organizations,we assess only the standard software processes of the organization. We do not assess the organizations other functional departments like HR or Admin. Then how can we certify the entire organization as CMM level company?? We have assessed only software related activities. Right. There is no relation with other departments like Accounts, HR or Admin. Then how can we claim that the whole company is a CMM certified company?
HOW TO SWAP TWO NOS IN ONE STEP?