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
code for find determinent of amatrix
Explain the difference between strcpy() and memcpy() function?
How many data structures are there in c?
What does struct node * mean?
What is the hardest programming language?
What are the application of void data type in c?
What does the format %10.2 mean when included in a printf statement?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What is the difference between functions getch() and getche()?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
How do you use a pointer to a function?
What is linear search?
Explain how do you list files in a directory?
Is it better to use a macro or a function?
In c programming language, how many parameters can be passed to a function ?