Consider the following C program.
#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
Post New Answer View All Answers
what do you mean by enumeration constant?
What are the characteristics of arrays in c?
Is it possible to pass an entire structure to functions?
what do u mean by Direct access files? then can u explain about Direct Access Files?
Explain what is #line used for?
What is the g value paradox?
What do you understand by friend-functions? How are they used?
What is the purpose of sprintf?
Do you know the use of fflush() function?
What is zero based addressing?
Are pointers integers in c?
What is array in C
How can I run c program?
What is %lu in c?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above