InterviewSolution
Saved Bookmarks
| 1. |
Which among the following statement is right?(a) sizeof(struct stemp*) > sizeof(union utemp*) > sizeof(char *)(b) sizeof(struct stemp*) < sizeof(union utemp*) < sizeof(char *)(c) sizeof(struct stemp*) = sizeof(union utemp*) = sizeof(char *)(d) the order Depends on the compilerThe question was posed to me in final exam.I'd like to ask this question from SizeofKeyword topic in division Floating Point & Sizeof Operator in C of C |
|
Answer» Correct option is (c) SIZEOF(STRUCT stemp*) = sizeof(union utemp*) = sizeof(char *) |
|