MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program? #include #include union employee { char name[15]; int age; float salary; }; const union employee e1; int main() { strcpy(e1.name, "K"); printf("%s %d %f", e1.name, e1.age, e1.salary); return 0; } |
| A. | Error: RValue required |
| B. | Error: cannot convert from 'const int *' to 'int *const' |
| C. | Error: LValue required in strcpy |
| D. | No error |
| Answer» E. | |