InterviewSolution
Saved Bookmarks
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
Suppose that in a C program snippet, followings statements are used.i) sizeof(int);ii) sizeof(int*);iii) sizeof(int**);Assuming size of pointer is 4 bytes and size of int is also 4 bytes, pick the most correct answer from the given options.(A) Only i) would compile successfully and it would return size as 4.(B) i), ii) and iii) would compile successfully and size of each would be same i.e. 4(C) i), ii) and iii) would compile successfully but the size of each would be different and would be decided at run time.(D) ii) and iii) would result in compile error but i) would compile and result in size as 4. |
| Answer» | |