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

code for find determinent of amatrix

1916


Explain the difference between strcpy() and memcpy() function?

948


How many data structures are there in c?

1063


What does struct node * mean?

964


What is the hardest programming language?

1097


What are the application of void data type in c?

1133


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

1586


what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?

2306


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

1035


Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?

957


How do you use a pointer to a function?

1025


What is linear search?

1087


Explain how do you list files in a directory?

1016


Is it better to use a macro or a function?

1098


In c programming language, how many parameters can be passed to a function ?

1052