Consider the following structure:struct num nam{int no;char name[25];}struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}};..........printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1);What does the above statement print?A. 8,9B. 9,9C. 8,8D. 8,unpredictable value
This question is related to TCS Interview
-
Interview Candidate
- Jun 6th, 2005
- 2
- 4385
Showing Answers 1 - 2 of 2 Answers
Related Answered Questions
Related Open Questions
Consider the following structure:struct num nam{int no;char name[25];}struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}};..........printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1);What does the above statement print?A. 8,9B. 9,9C. 8,8D. 8,unpredictable value
Related Answered Questions
Related Open Questions