#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 / govind verma
5 process will create..........
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
How do you define CONSTANT in C?
What is the ANSI C Standard?
How #define works?
Which type of language is c?
can any one tel me wt is the question pattern for NIC exam
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Differentiate between a for loop and a while loop? What are it uses?
How can I read a binary data file properly?
how to make a scientific calculater ?
Why #include is used in c language?
Is c# a good language?
What is keyword in c?
What is variable in c example?
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.