

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> struct Employee { char str[]; }; void main() { struct Employee Emp; printf("%d", sizeof(struct Employee)); } |
A. | Garbage value |
B. | Undefined behaveiour |
C. | Nothing |
D. | Size of char |
E. | Compilation Error |
Answer» F. | |