文章目录 FSUM 实验目的 代码总览 代码分析 `atof`函数 `sprintf` strcat函数 编译运行 结果分析 FSUM 实验目的 模拟浮点数运算时“大数吃小数”的情况。 代码总览 #include <stdio.h> #include <stdlib.h> #include <string.h> #define BUFSIZE 256 int main(int argc, char *argv[]) { char prefix[BUFSIZE];