Structures, Unions, Enums - Programming

Q1:

If the following structure is written to a file using fwrite(), can fread() read it back successfully?
struct emp
{
    char *n;
    int age;
};
struct emp e={'AptitudeCrack', 15};
FILE *fp;
fwrite(&e, sizeof(e), 1, fp);

A Yes

B No

ANS:A - Yes

Since the structure contain a char pointer while writing the structure to the disk using fwrite() only the value stored in pointer n will get written. so fread() fails to read.