#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 ؟؟؟
Answers were Sorted based on User's Feedback
what is the difference between NULL & NUL keywords in C?
who is the editor of 'pokemon'?
What is a good way to implement complex numbers in c?
What is the use of #include in c?
What is a segmentation fault?
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }
What is abstract data structure in c?
In C programming, what command or code can be used to determine if a number of odd or even?
What is the function of volatile in c language?
How to compare array with pointer in c?
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above