dev c++如何进行断点调试
#include<stdio.h>#include<stdlib.h>#include<string>typedefstruct{floatcoef;//系数intexp...
#include<stdio.h>
#include<stdlib.h>
#include<string>
typedef struct {
float coef; //系数
int expn; //指数
}ElemType;
typedef struct LNode{ //结点类型
ElemType data;
struct LNode *next;
}*LinkList;
void Creat(LinkList &L,int term){
L = (LinkList)malloc(sizeof(LNode)); //生成结点的头指针;
L->next = NULL;
LinkList q=L;
ElemType e;
for(int i = 1;i<=term;i++){ //遍历term项的
LinkList p = (LinkList)malloc(sizeof(LNode));
e=p->data;
scanf("%f %d",&e.coef,&e.expn);
p->next=q->next;q->next=p;
q=q->next;free(p);
}
}
这段程序怎么进行断点调试啊???什么输入变量名?能详细的解答一下吗 展开
#include<stdlib.h>
#include<string>
typedef struct {
float coef; //系数
int expn; //指数
}ElemType;
typedef struct LNode{ //结点类型
ElemType data;
struct LNode *next;
}*LinkList;
void Creat(LinkList &L,int term){
L = (LinkList)malloc(sizeof(LNode)); //生成结点的头指针;
L->next = NULL;
LinkList q=L;
ElemType e;
for(int i = 1;i<=term;i++){ //遍历term项的
LinkList p = (LinkList)malloc(sizeof(LNode));
e=p->data;
scanf("%f %d",&e.coef,&e.expn);
p->next=q->next;q->next=p;
q=q->next;free(p);
}
}
这段程序怎么进行断点调试啊???什么输入变量名?能详细的解答一下吗 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询