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

c) 1 3 0 0

Check www.codepad.org

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is memcpy() function?

1170


Explain how are portions of a program disabled in demo versions?

1175


In C language, a variable name cannot contain?

1329


Write a program to print all permutations of a given string.

1237


What is header file in c?

1112


What is union and structure in c?

1293


Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?

1131


What is external variable in c?

1101


How can I rethow can I return a sequence of random numbers which dont repeat at all?

1242


What the different types of arrays in c?

1128


What are the c keywords?

1260


What is the code for 3 questions and answer check in VisualBasic.Net?

2210


What are header files in c programming?

1183


Why main is not a keyword in c?

1325


Write a program which returns the first non repetitive character in the string?

1175