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 |
Why ca not I do something like this?
What is an auto variable in c?
what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??
write the program to find multiplication of 2-D matrix??????????
Why C language is a procedural language?
can we store values and addresses in the same array? explain
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
diff between exptected result and requirement?
What is an endless loop?
What is the code for 3 questions and answer check in VisualBasic.Net?
Write a program to print factorial of given number without using recursion?