MCQs > IT & Programming > C Programming > Assuming integer takes 4 bytes and the starting address of the array 'foo' is 2000, Output of the following code? int main() { int foo[2][3][4][5]; foo[2][3][4][5] = 50; printf('%d',*(*(*(*(foo+2)+3)+4)+5)); return 0; }

C Programming MCQs

Assuming integer takes 4 bytes and the starting address of the array 'foo' is 2000, what will be the output of the following code? int main() { int foo[2][3][4][5]; foo[2][3][4][5] = 50; printf("%d",*(*(*(*(foo+2)+3)+4)+5)); return 0; }

Answer

Correct Answer: 50

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

More C Programming MCQ Questions

search

C Programming Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it