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


Please Help Members By Posting Answers For Below Questions

Where in memory are my variables stored?

636


Write a program to print ASCII code for a given digit.

688


What is the use of bitwise operator?

687


Explain a file operation in C with an example.

663


What does emoji p mean?

599






Explain can you assign a different address to an array tag?

647


What is malloc and calloc?

573


Why c is called procedure oriented language?

579


What is volatile variable how do you declare it?

566


the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above

721


What is the mean of function?

649


What are the difference between a free-standing and a hosted environment?

745


Can the “if” function be used in comparing strings?

593


What is the use of void pointer and null pointer in c language?

625


C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions

609