MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> void main() { char ch[12][16] = {"Interview", "Mania", "World"}; printf("%d", sizeof(ch[1])); } |
| A. | 16 |
| B. | 12 |
| C. | Garbage value |
| D. | Compilation Error |
| E. | Runtime Error |
| Answer» B. 12 | |