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
What is the significance of scope resolution operator?
Can you please explain the difference between malloc() and calloc() function?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
writ a program to compare using strcmp VIVA and viva with its output.
Explain the difference between strcpy() and memcpy() function?
Why main is used in c?
What is a structure in c language. how to initialise a structure in c?
Why is sprintf unsafe?
What is static memory allocation? Explain
Is Exception handling possible in c language?
How can you read a directory in a C program?
Explain null pointer.
What is property type c?
Can a void pointer point to a function?
What is the use of a conditional inclusion statement in C?