由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Linux版 - fscanf is messy
相关主题
C 89的话,怎么方便的把一个文件的行重排Help --- Parsing posted JSON data
find问题定义linked list最后一行什么意思? (转载)
2个问题is perror() non-buffered io in linux ?
有matplotlib或numpy/scipy的同学帮我试试 (转载)谁知道这个问题的答案 (转载)
谁会c啊,能不能看看这个代码有啥问题?linux select(): can file descriptors be dynamtic ? (转载)
Valgrind报uninitialized value was created by a heap allocation并口驱动的一个问题 (转载)
谁懂gstreamer? 用gst-launch什么的?question help!!
&! 什么意思?Perl and Matlab Question
相关话题的讨论汇总
话题: 9999话题: file话题: fscanf话题: what话题: messy
进入Linux版参与讨论
1 (共1页)
G**Y
发帖数: 33224
1
What "%[^\n]\n" means?!
If the first few lines of an input file are:
hello
hello
world
...
the 3rd line is empty, no extra spaces at the end of the lines. What the output should be?
#include
#include
int main(void) {
FILE* fp;
char file[999]="hello.world";
char dummy1[9999], dummy2[9999], dummy3[9999], dummy4[9999];
int line_max=9999;
int i;
if ((fp = fopen(file, "r")) == NULL) {
printf("Cannot open file %s for reading. \n", file);
exit(
1 (共1页)
进入Linux版参与讨论
相关主题
Perl and Matlab Question谁会c啊,能不能看看这个代码有啥问题?
C中的精度问题Valgrind报uninitialized value was created by a heap allocation
请教一个用matlab tcpip函数的问题谁懂gstreamer? 用gst-launch什么的?
C的fscanf的问题&! 什么意思?
C 89的话,怎么方便的把一个文件的行重排Help --- Parsing posted JSON data
find问题定义linked list最后一行什么意思? (转载)
2个问题is perror() non-buffered io in linux ?
有matplotlib或numpy/scipy的同学帮我试试 (转载)谁知道这个问题的答案 (转载)
相关话题的讨论汇总
话题: 9999话题: file话题: fscanf话题: what话题: messy