C语言 atof
C语言 atof
功能:把一个小数形式的字符串转化为一个浮点数。
案例
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <string.h> #include <stdlib.h> #include <math.h> #include <time.h> int main(void) { // 字符类型 // char ch[] = " -123456abc"; 只会打印数字、非数字停止 char ch[] = "-12.3456"; // 转换类型 double i = atof(ch); // 转换为double类型 printf("%d\n", i); return 0; }