结构体的使用问题
typedef struct{
int typenum;
char *word;
}WORD;
在主函数中初始化WORD *oneword=NULL;
可以这么赋值吗oneword->typenum=1;
调试程序走到这里显示 unhandled exception in bianyi.exe: 0xC0000005:Access Violation
还有一个问题,怎么在调试程序的时候查看oneword->typenum的值CXX0030 ERROR : expression cann't be evaluated
应该怎么写才对。