#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 / aman goyal
127
64+32+16+8+4+2+1
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
Write a program to print all permutations of a given string.
What does volatile do?
Is exit(status) truly equivalent to returning the same status from main?
Explain low-order bytes.
What's the difference between constant char *p and char * constant p?
What is an arrays?
Explain what is the heap?
What is function pointer c?
Write a program with dynamically allocation of variable.
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
What oops means?
What is #line in c?
When can a far pointer be used?