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...

6)What would be the output?

main()
{
int u=1,v=3;
pf("%d%d",u,v);
funct1(&u,&v);
pf("%d%d\n",u,v);
}
void funct1(int *pu, int *pv)
{
*pu=0;
*pv=0;
return;
}

a)1 3 1 3
b)1 3 1 1
c)1 3 0 0
d)1 1 1 1
e) 3 1 3 1

Answer Posted / aswini

Answer is 1 3 0 0.

Is This Answer Correct ?    9 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is use of #include in c?

1220


What is variable initialization and why is it important?

1342


What are types of structure?

1173


How can I open a file so that other programs can update it at the same time?

1242


What is a method in c?

1211


What are extern variables in c?

1042


Why c is called a mid level programming language?

1112


Why doesn't C support function overloading?

2870


What is the difference between arrays and pointers?

1175


What is a macro, and explain how do you use it?

1127


What does void main () mean?

1300


How would you use the functions fseek(), freed(), fwrite() and ftell()?

1206


Why array is used in c?

1064


Why do we use stdio h and conio h?

1136


Using which language Test cases are added in .ptu file of RTRT unit testing???

4355