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 / niranjan kumar niraj
a)1313
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
What is a structural principle?
What do you mean by keywords in c?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
Why main is used in c?
Why is c fast?
How do you redirect a standard stream?
Why c is known as a mother language?
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
Explain what does the format %10.2 mean when included in a printf statement?
What is formal argument?
how to create duplicate link list using C???
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
How can I remove the trailing spaces from a string?
What is self-referential structure in c programming?