由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - [转载] C 语言输入函数紧急求助!
相关主题
[转载] any fast way to learn Yak? (bison and flex)about strtok()
how to sscanf this case.[转载] 紧急求教一个技术问题 unix c
sed question??请回答一下9176
[转载] 谁能帮我解决这个程序设计问题?True 64移植档AIX5L 的问题
segmentation fault 求救Regular expression
Re: How to compare two binary files in Unix?急: another批量替换
what is the differnece between const char * and..奇怪的 C 问题
[转载] UNIX下的strtoka "chdir" problem in C program
相关话题的讨论汇总
话题: sscanf话题: char话题: array话题: 函数话题: 紧急
进入Unix版参与讨论
1 (共1页)
A**u
发帖数: 2087
1
【 以下文字转载自 Programming 讨论区 】
【 原文由 Aliu 所发表 】
谁知道 sscanf 这个东东? 为什么读浮点数总有问题? 比如:
sscanf(char_array, "%d %f", &i, &f);
其中char_array是从文件或屏幕上读入的一行. f值好象总有问题, 为什么??
谢谢先!
p**h
发帖数: 99
2
if your variable 'f' is of double type, you should use '%lf', not '%f'.

【在 A**u 的大作中提到】
: 【 以下文字转载自 Programming 讨论区 】
: 【 原文由 Aliu 所发表 】
: 谁知道 sscanf 这个东东? 为什么读浮点数总有问题? 比如:
: sscanf(char_array, "%d %f", &i, &f);
: 其中char_array是从文件或屏幕上读入的一行. f值好象总有问题, 为什么??
: 谢谢先!

A**u
发帖数: 2087
3
got it a monment ago! thanks a lot anyway!

【在 p**h 的大作中提到】
: if your variable 'f' is of double type, you should use '%lf', not '%f'.
1 (共1页)
进入Unix版参与讨论
相关主题
a "chdir" problem in C programsegmentation fault 求救
[转载] 问个小问题Re: How to compare two binary files in Unix?
Unix下好好的到了linux下segment faultwhat is the differnece between const char * and..
求助,这样从c++输入窗口读入一连串的单词或数字呢?[转载] UNIX下的strtok
[转载] any fast way to learn Yak? (bison and flex)about strtok()
how to sscanf this case.[转载] 紧急求教一个技术问题 unix c
sed question??请回答一下9176
[转载] 谁能帮我解决这个程序设计问题?True 64移植档AIX5L 的问题
相关话题的讨论汇总
话题: sscanf话题: char话题: array话题: 函数话题: 紧急