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
how to introdu5ce my self in serco
What are the different types of C instructions?
What is a string?
What is enumerated data type in c?
What is wrong with this code?
using for loop sum 2 number of any 4 digit number in c language
What are the different types of data structures in c?
What are different types of pointers?
Is c is a middle level language?
What are reserved words?
Does c have function or method?
Process by which one bit pattern in to another by bit wise operation is?
What is the difference between fread and fwrite function?
Explain what is a program flowchart and explain how does it help in writing a program?
Where is c used?