#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 / bikash
3
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How can I remove the trailing spaces from a string?
Are the variables argc and argv are always local to main?
Why cant I open a file by its explicit path?
Why do we use return in c?
What is the difference between #include and #include 'file' ?
What is the difference between #include
What is multidimensional arrays
Is this program statement valid? INT = 10.50;
What is difference between far and near pointers?
How do you print only part of a string?
What is #line?
Define circular linked list.
What is wrong with this statement? Myname = 'robin';
What is volatile, register definition in C
What is the difference between functions abs() and fabs()?