求教关于atof()问题
我用的是TC2.01版的,用示例程序如下:#include <stdlib.h>
#include <stdio.h>
int main(void)
{
float f;
char *str = "12345.67";
f = atof(str);
printf("string = %s float = %f\n", str, f);
return 0;
}
运行程序的结果如下
sanf:floating point formats not linked
abnormal program termination
我的stdlib.h里有atof()的函数,怎么不能运行呢,谢谢解答