#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 #ifdef ? What is its application?
What is calloc malloc realloc in c?
Why cant I open a file by its explicit path?
What is c preprocessor mean?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
How can I discover how many arguments a function was actually called with?
What is file in c language?
How do you print only part of a string?
What is #include called?
When was c language developed?
When can a far pointer be used?
What does #pragma once mean?
to find the closest pair