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 / vignesh1988i

for first printf it will print 0, for second printf it will
print 1.. and finally i will have a value 2.

Is This Answer Correct ?    5 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what are # pragma staments?

2000


Are comments included during the compilation stage and placed in the EXE file as well?

1029


Why is c still so popular?

1005


How macro execution is faster than function ?

1132


What is meant by recursion?

997


what is ur strangth & weekness

2329


How can I insert or delete a line (or record) in the middle of a file?

977


What are reserved words?

1046


What are static variables in c?

1029


Write a program to know whether the input number is an armstrong number.

1073


What is a 'null pointer assignment' error?

1162


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)

2058


Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.

1071


Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.

3636


What is malloc return c?

976