#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 &#1567;&#1567;&#1567;

Answer Posted / aman goyal

127
64+32+16+8+4+2+1

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between printf and scanf )?

603


What is an expression?

664


Why we write conio h in c?

575


A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?

1516


Explain argument and its types.

609






Is c is a procedural language?

605


Write a C program to count the number of email on text

1422


What is %d called in c?

765


What is a pointer and how it is initialized?

613


What are pointers?

638


How was c created?

596


What is sizeof int?

643


What is mean by data types in c?

559


Explain the use of function toupper() with and example code?

664


Explain the use of bit fieild.

719