首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

为什么提示“error C2065: 'malloc' : undeclared identifier”,该如何解决

2012-03-18 
为什么提示“error C2065: malloc : undeclared identifier”指示的出错语句是:s-base(ElemType *)mallo

为什么提示“error C2065: 'malloc' : undeclared identifier”
指示的出错语句是:
s->base=(ElemType *)malloc(StackInitSize*sizeof(ElemType));
错误提示:
  --------------------Configuration: chp34 - Win32 Debug--------------------
Compiling...
convert.cpp
d:\数据结构算法\chp34\dy_hanshu.cpp(8) : error C2065: 'malloc' : undeclared identifier
Error executing cl.exe.

convert.obj - 1 error(s), 0 warning(s)
这是为什么呀?
 

[解决办法]

typedef int ElemType; 
放到头文件c1.h里面

热点排行