What is the difference between fork() and vfork()?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
• fork(): Creates a child process with a separate memory space.
• vfork(): Shares the memory space with the parent until exec() or _exit() is called.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
• fork(): Creates a child process with a separate memory space.
• vfork(): Shares the memory space with the parent until exec() or _exit() is called.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is meant by int fun const(int a, int b) { .... ... }
what is default constructor?
Given an array of numbers, except for one number all the others occur twice. Give an algorithm to find that number which occurs only once in the array.
What is pointer and structure in c?
What is a structure member in c?
What does c mean before a date?
What is switch in c?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
How can I find leaf node with smallest level in a binary tree?
how to print "hai" in c?
How can you find the exact size of a data type in c?
What is a pointer and how it is initialized?