#include<stdio.h>
int c;
int main()
{
struct abc{
int *a;
char *ch[10];
};
struct abc obj1;
struct abc *obj;
obj = & obj1;
scanf("%d",obj->a);
printf("\nY");
scanf("%s",&obj->ch);
printf("\nY");
return 0;
}
我使用在Fedora VIM編輯器和gcc編譯.. 我得到一個分段錯誤(內核傾倒?)//這是什麼意思?結構指針
下次請格式化您的代碼。 – 2011-03-30 19:02:20