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
How can I ensure that integer arithmetic doesnt overflow?
How can you find out how much memory is available?
Explain what is meant by high-order and low-order bytes?
Is c easy to learn?
What is memcpy() function?
Can a pointer be volatile in c?
What is pragma c?
in linking some of os executables are linking name some of them
What is return type in c?
What is the main difference between calloc () and malloc ()?
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!+....
What does sizeof function do?
By using C language input a date into it and if it is right?
List some basic data types in c?
Which header file is essential for using strcmp function?