. Explain the differences between fork() and exec() in C
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
1. fork(): Creates a new process (child) identical to the parent process.
2. exec(): Replaces the current process image with a new program.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
1. fork(): Creates a new process (child) identical to the parent process.
2. exec(): Replaces the current process image with a new program.
| Is This Answer Correct ? | 0 Yes | 0 No |
what are two kinds of java
What extern c means?
Tell me is null always defined as 0(zero)?
Why ca not I do something like this?
what will be the output for the following main() { printf("hi" "hello"); }
how to compare two strings without using strcmp() function??
What are loops in c?
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
What is a program flowchart?
how can u print a message without using any library function in c
What is the difference between call by value and call by reference in c?
simple c program for 12345 convert 54321 with out using string