. 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 C language ?
How is null defined in c?
write a prgram of swapping with 2 valiables
What is variable initialization and why is it important?
Why static is used in c?
Explain what is a program flowchart and explain how does it help in writing a program?
write a addition of two no. program with out using printf,scanf,puts .
What is the difference b/w Structure & Union?
Differentiate between static and dynamic modeling.
What is information technology.
How can I send mail from within a c program?
Why #include is used in c language?