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 |
Explain Function Pointer?
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
write a programming in c to find the sum of all elements in an array through function.
What is a structure member in c?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
Explain command-line arguments in C.
two variables are added answer is stored on not for third variable how it is possible?
create a C program that displays one z,two y's,three x's until twenty six A's. plzz answer i need it tomorrow.
2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier.  Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed.  When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed.  Sequence of take-off is the sequence of addition to the waitlist
Can you subtract pointers from each other? Why would you?
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
How can I return multiple values from a function?