#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
How do I declare a pointer to an array?
What are loops in c?
write a “Hello World” program in “c” without using a semicolon?
What is dynamic variable in c?
What is the difference b/w Structure & Union?
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
How to receive strings with spaces in scanf()
What is the best way to comment out a section of code that contains comments?
sir i got 146 correct question & i have also the advantage of height so will they consider my marks as 146+3=149.can any body tell me how they consider my height marks.
In C programming, how do you insert quote characters (‘ and “) into the output screen?
What is the restrict keyword in C?
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }