โช Choose the correct option.
What will be the output of the following “C” program?
struct adr {
char *name;
char *city;
int zip;
};
struct adr *adradr;
struct adr {
char *name;
char *city;
int zip;
};
struct adr *adradr;
Which are valid references?