MCQs > IT & Programming > C Programming > Output of the following program ? main() { int u = 1, v = 3; printf('%d %d',u,v); funct1(&u,&v); printf('%d %d\n',u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; }

C Programming MCQs

What is the output of the following program ? main() { int u = 1, v = 3; printf("%d %d",u,v); funct1(&u,&v); printf(" %d %d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; }

Answer

Correct Answer: 1 3 0 0

Explanation:

Note: This Question is unanswered, help us to find answer for this one

C Programming Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

C Programming Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it