MCQs > IT & Programming > C Programming > What will this code print out? #include void function(char *name) { name=NULL; } main() { char *name='ELANCE'; function(name); printf('%s',name); }

C Programming MCQs

What will this code print out? #include void function(char *name) { name=NULL; } main() { char *name="ELANCE"; function(name); printf("%s",name); }

Answer

Correct Answer: ELANCE

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