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
Write a program to swap two numbers without using third variable?
Explain union.
What is meant by realloc()?
What is the difference between int main and void main?
What is the difference between union and anonymous union?
Are bit fields portable?
What is meant by 'bit masking'?
What is the difference between exit() and _exit() function?
What math functions are available for integers? For floating point?
How do you print an address?
find the sum of two matrices and WAP for it.
#include
What is array within structure?
What is difference between far and near pointers?
How can you find out how much memory is available?