

MCQOPTIONS
Saved Bookmarks
1. |
If the following structure is written to a file using fwrite(), can fread() read it back successfully?_x000D_ struct emp_x000D_ {_x000D_ char *n;_x000D_ int age;_x000D_ };_x000D_ struct emp e={"IndiaBIX", 15};_x000D_ FILE *fp;_x000D_ fwrite(&e, sizeof(e), 1, fp); |
A. | Yes |
B. | No |
Answer» C. | |