主题:求助new 问题
[b]#include<stdio.h>
typedef struct linknode{
char data;
struct linknode *next;
}node;
node *head;
......
......
......
我执行 head=new node;
为什么会显示C:\Turbo C\a\xianxingbiao.c(14) : error C2065: 'new' : undeclared identifier[/b]
typedef struct linknode{
char data;
struct linknode *next;
}node;
node *head;
......
......
......
我执行 head=new node;
为什么会显示C:\Turbo C\a\xianxingbiao.c(14) : error C2065: 'new' : undeclared identifier[/b]