#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 &#1567;&#1567;&#1567;

Answers were Sorted based on User's Feedback



#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How ma..

Answer / bikash

3

Is This Answer Correct ?    0 Yes 0 No

#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How ma..

Answer / aman goyal

127
64+32+16+8+4+2+1

Is This Answer Correct ?    0 Yes 0 No

#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How ma..

Answer / neelankshi

7

Is This Answer Correct ?    0 Yes 2 No

#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How ma..

Answer / govind verma

5 process will create..........

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More C Interview Questions

What is binary tree in c?

0 Answers  


How will you divide two numbers in a MACRO?

0 Answers   Apps Associates,


Explain what’s a signal? Explain what do I use signals for?

0 Answers  


Is a pointer a kind of array?

0 Answers  


Why doesnt that code work?

0 Answers  


What are the Advantages of using macro

0 Answers  


What does the error message "DGROUP exceeds 64K" mean?

0 Answers   Celstream,


What is pointer to pointer in c with example?

0 Answers  


explain memory layout of a C program

2 Answers  


If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above

0 Answers  


which header file contains main() function in c?

17 Answers   Google, HCL, TCS,


How many types of functions are there in c?

0 Answers  


Categories