请问我写的c程序怎么有这么多的warning??
warning有8个,但是不知到是怎么回事,warning具体如下:
newNode1=(graph)malloc(sizeof(struct node));对应的为:
incompatible implicit declaration of built-in function 'malloc'
int M=ceil(1.35*n*(log(n)/log(2)));对应的waring为:
incompatible implicit declaration of built-in function 'ceil'
incompatible implicit declaration of built-in function 'log'
请问如何去掉这些warning??
忘加头文件了吧
#include <math.h>
#include <malloc.h>
为什么我加了#include <malloc.h>会报错?说no such file or directory
看你什么系统,ANSI标准的应该是 <stdlib.h>,
还有“int M=ceil(1.35*n*(log(n)/log(2)))”等号两边的类型不一样,M为int型,log()函数原型为double log(double x).
相关问答:
#include <string.h>
#include <stdio.h>
void main()
{
int i;
char buf[]="abcde";
strncpy(buf,"abc",3);
for(i=0;i <5;i++)
printf(&q ......
以前在VC里面建一个工程,都只用一个 .c 文件,昨天在一个工程里用了两个 .c文件了,遇到问题了,请大家指点。比如:
File1.c Fil ......
如何用c实现自动的telnet功能,有谁知道怎么用c语言来实现。问题主要是telnet的用户名,密码要交互式的输入,怎么能够用程序实现啊,高手指教啊
我有源码 你要的话 留下邮箱
flynecnt@qq.com 谢谢了
liuzhizu1 ......
C/C++ code:
void p1(const char **pname)
{
const char *name = "test1";
*pname = name;
}
void p2(const char **pname)
{
char *name = "test2";
*pname = name ......
请根据版规进行版务登记,提高版务透明度
本贴禁止灌水、广告,一经发现,一律删除,关小黑屋
如对版务有建议或者意见,可以在本贴中进行反馈
附:
C/C++版务贴-200907:http://top ......