#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
What is your stream meaning?
Why is c known as a mother language?
Can a variable be both static and volatile in c?
What is the advantage of c?
What is c programming structure?
What are the different types of constants?
How can I sort a linked list?
Which is better pointer or array?
What is the meaning of 2d in c?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
What are register variables in c?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What are global variables and explain how do you declare them?
What are structure members?