#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 / neelankshi
7
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is the explanation for the dangling pointer in c?
Process by which one bit pattern in to another by bit wise operation is?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
Where are c variables stored in memory?
Is fortran faster than c?
What tq means in chat?
Explain what is wrong with this program statement?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Can a variable be both static and volatile in c?
What is an auto keyword in c?
number of times a digit is present in a number
Can we change the value of #define in c?
What is advantage of pointer in c?