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 translation phases used in c language?
Explain what is a const pointer?
What is the difference between malloc() and calloc() function in c language?
How do you list files in a directory?
Explain 'bus error'?
why return type of main is not necessary in linux
Is array a primitive data type in c?
How can a number be converted to a string?
Differentiate between declaring a variable and defining a variable?
Explain what are run-time errors?
define string ?
What is c++ used for today?
What is infinite loop?
What are the disadvantages of c language?
Explain the meaning of keyword 'extern' in a function declaration.