MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> struct alphabet { char *ch; }; void main() { struct alphabet alp[2]; printf("%d", sizeof(alp)); } |
| A. | 16 |
| B. | 8 |
| C. | 4 |
| D. | 2 |
| E. | None of these |
| Answer» B. 8 | |