首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

向高手求救一简单问题!!!!

向高手求救一简单问题!!!!

#include "math.h"
#include <stdio.h> 
 


#pragma section pram_code begin
void main (void)
{
  double x = 64.0; 
     printf("The square root of %f is %f.", x, sqrt(x));
}


产生一个错误,


Error   : function has no prototype
count.c line 46      printf("The square root of %f is %f.\n", x, sqrt(x));  


请高手们帮帮忙解答。


错误原因就是我用了sqrt函数.

咿,没人知道
使用sqrt函数需要设定支持浮点运算,要选择支持浮点运算的库
另外,printf函数的使用也要配合有串口的通讯
斑竹好厉害,能不能指导下详细该怎么做,或贴个例子!!谢谢了
我试过了,#include 后,printf是可以用的
可就是sqrt用不了
在创建工程的时候会让你选择是否支持浮点运算,这个时候要选择支持
返回列表