Answer Posted / 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 |
Post New Answer View All Answers
Explain why c is faster than c++?
Which is an example of a structural homology?
What is bubble sort technique in c?
How can you find the exact size of a data type in c?
Why c is called object oriented language?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
What is pointer to pointer in c?
What are the rules for identifiers in c?
Explain how can type-insensitive macros be created?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
Is struct oop?
Explain what is the benefit of using an enum rather than a #define constant?
What are actual arguments?
how to find binary of number?
Write program to remove duplicate in an array?