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 / ramlal bishnoi
b)1 3 1 1
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the use of linkage in c language?
Describe the difference between = and == symbols in c programming?
Why is c not oop?
What are the rules for identifiers in c?
What is difference between && and & in c?
What are the different types of control structures?
What is getch?
Which one would you prefer - a macro or a function?
Is c++ based on c?
Explain how can you avoid including a header more than once?
In which header file is the null macro defined?
Hi can anyone tell what is a start up code?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Write a program to generate the Fibinocci Series
Why does this code crash?