#include <stdio.h>
int main() {
int i;
for (i=0;i<3;++i) {
fork();fork();
}
}
How many processes are created when running this program
(including the initial one)?
Explain ؟؟؟
Answer Posted / govind verma
5 process will create..........
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
How can I dynamically allocate arrays?
What is define c?
Explain what is the benefit of using #define to declare a constant?
What is hashing in c?
What is the advantage of c?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
When should you not use a type cast?
What is malloc calloc and realloc in c?
Is there a built-in function in C that can be used for sorting data?
What are terms in math?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What are high level languages like C and FORTRAN also known as?
How can I trap or ignore keyboard interrupts like control-c?
How can I find the modification date of a file?