私はCが初めてで、構造体を学習しています。サイズ 30 の char ポインターを使用しようとしmalloc
ていますが、セグメンテーション エラー (コア ダンプ) が発生しています。インターネットで検索しましたが、これを解決できません。どんな助けでも大歓迎です。
おそらくchar*
、構造体のメンバーに間違ってアクセスしていますか?
typedef struct{
int x;
int y;
char *f;
char *l;
}str;
void create_mall();
void create_mall() //Malloc the struct
{
str *p;
p->f = (char*)malloc(sizeof(char)*30); // segmentation fault here
p->l = (char*)malloc(sizeof(char)*30);
printf("Enter the user ID:");
scanf("%d",&p->x);
printf("\nEnter the phone number:");
scanf("%d",&p->y);
printf("\nEnter the First name:");
scanf("%29s",p->f);
printf("\nEnter the Last name:");
scanf("%29s",p->l);
printf("\nEntered values are: %d %d %s %s\n",p->x,p->y,p->f,p->l);
}
int main(void)
{
create_mall();
return 0;
}