char *p = malloc(10);
c中使用:char*p=malloc(10);提示警告错误:warning:implicitfunctiondeclaration:mallocwarning:impro...
c中使用:char *p = malloc(10);
提示警告错误:
warning: implicit function declaration: malloc
warning: improper pointer/integer combination: op "="
这是为什么呢?谢谢! 展开
提示警告错误:
warning: implicit function declaration: malloc
warning: improper pointer/integer combination: op "="
这是为什么呢?谢谢! 展开
展开全部
malloc的原型:
extern void *malloc(unsigned int num_bytes);
#include <malloc.h>或#include<stdlib.h>
这个你可以写成:
charp *p=(char*)malloc(10);
如果想进一步了解MALLOC,给你个你看看
http://zhidao.baidu.com/question/120585285.html
extern void *malloc(unsigned int num_bytes);
#include <malloc.h>或#include<stdlib.h>
这个你可以写成:
charp *p=(char*)malloc(10);
如果想进一步了解MALLOC,给你个你看看
http://zhidao.baidu.com/question/120585285.html
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2010-02-17
展开全部
1.包含stdlib.h文件
2.改为char *p = (char *)malloc(10);
2.改为char *p = (char *)malloc(10);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
char *p =(char*) malloc(10);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询