InterviewSolution
Saved Bookmarks
| 1. |
In the directive, #pragma pack(n), which of the following is not a valid value of n?(a) 1(b) 2(c) 3(d) 4This question was addressed to me during an interview.Origin of the question is Pragma topic in portion C Preprocessor of C |
|
Answer» RIGHT ANSWER is (c) 3 Explanation: Valid ARGUMENTS are 1,2,4 and 8. 3 is not a valid VALUE for n. |
|