[help]请大家帮我决一个基础的问题
#include<stdio.h>#include<conio.h>
#define NULL 0
typedef struct
{char name[25];
long num;
float score;
}elemtype;
main( )
{ elemtype *p;
scanf("%f",&p->score);
printf("\n%f",p->score);
getch();
}
这个程序在win-tc中编译成功,但运行时就马上关闭,为什么呢?