356) Consider the following declaration.
struct addr
{
char city [10];
char street [20];
int pincode;
};
struct
{
char name[20];
int sex;
struct addr locate;
}criminal, *kd * &criminal;
The third character in the criminal name can be accessed by
Answer is:
All of these
Related C Programming MCQ with Answers
Answer is: