Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is the output of the following program

#include<stdio.h>
main()
{
int i=0;
fork();
printf("%d",i++);
fork();
printf("%d",i++);
fork();
wait();
}

Answer Posted / srikanth

print order cannot be predicted.Total 8 process(including
main) first process prints 0,1
the first child prints 0,1 and the other 2 child/grand child
process print 1's (two 1s). The other four child/grand child
process wont print anything (created after printf)

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are multibyte characters?

1116


What is variable and explain rules to declare variable in c?

1087


Is that possible to add pointers to each other?

1369


What is the difference between declaring a variable by constant keyword and #define ing that variable?

3362


What is the advantage of an array over individual variables?

1232


What is ctrl c called?

1043


Explain what does the format %10.2 mean when included in a printf statement?

1360


What are pointers in C? Give an example where to illustrate their significance.

1225


In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)

2121


How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same

1097


What is the difference between constant pointer and constant variable?

1222


please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com

1772


Did c have any year 2000 problems?

1108


What is the difference between functions getch() and getche()?

1096


Wt are the Buses in C Language

3214