关于vc++2010调试的问题
#include"stdafx.h"#include<conio.h>#include<stdlib.h>typedef struct Node{ int elem; struct Node * next;}Node;void func(Node * N){ N->elem=1; N->next=(Node *)malloc(sizeof(struct Node)); ///运行到这步直接跳走了 N->next->elem=3; N->next->next=NULL;}int main(void){ Node N={0,NULL}; func(&N); getche(); return 0;}