What will be the output of the following “C” program?
		
					

Loading

โœช 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;

Which are valid references?

A. adr->name X
B. adradr->name
C. adr.zip X
D. adradr.zip