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
What are the keywords in c?
What is string length in c?
What is scope rule of function in c?
Why ca not I do something like this?
How the c program is executed?
What are lookup tables in c?
What are the types of arrays in c?
What is actual argument?
What is the difference between strcpy() and memcpy() function in c programming?
Do pointers need to be initialized?
explain what is a newline escape sequence?
What is the meaning of c in c language?
How main function is called in c?
Explain what is the difference between far and near ?
What is the usage of the pointer in c?