#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 / neelankshi
7
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is 02d in c?
Are there namespaces in c?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
what is event driven software and what is procedural driven software?
Explain function?
What does node * mean?
Explain what are run-time errors?
What is indirection? How many levels of pointers can you have?
What are the types of data types and explain?
What is && in c programming?
What will be the outcome of the following conditional statement if the value of variable s is 10?
What is the total generic pointer type?
what are bit fields? What is the use of bit fields in a structure declaration?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
Explain how are 16- and 32-bit numbers stored?