我们如何在嵌套结构中使用指针?
我在下面给出的代码中创建了两个结构,我怎样才能访问的元素st_no
?彻底解释嵌套结构。
#include <stdio.h>
#include <stdlib.h>
typedef struct
{
char st_no[22];
int no;
}address;
typedef struct
{
char name[15];
int mark;
address addr;
}student;
int main (void)
{
student *selva;
strcpy(selva->name, "ajay");
strcpy(selva->addr.st_no,"3rd st");
printf("%s",selva->name);
return 0;
}