- 论坛徽章:
- 0
|
10可用积分
下面这段程序执行就会coredump? 郁闷死了!
问题就出在printf那里 可是怎么改呢?
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <errno.h>
main( ) {
char file_path[256];
char file_name[256];
char rec_line[256];
char *point;
FILE *fp;
sprintf( file_path, "test.txt" );
memset(file_name,0,sizeof(file_name));
fp = fopen( file_path, "r" );
fgets( rec_line, sizeof( rec_line ), fp );
printf ( "rec_line %s\n",rec_line);
point = strtok( rec_line, "|" );
point = strtok( NULL, "|" );
point = strtok( NULL, "|" );
point = strtok( NULL, "|" );
printf ( "ttl_num %s\n",point);
point = strtok( NULL, "|" );
printf ( "ttl_amt %s\n",*point);
fclose(fp);
} |
最佳答案
查看完整内容
我在我的机器上跑了下你的程序没出错啊不过为了去掉warning,我做了如下改动加了#include main改为int main()程序最后加了return 0;第二个printf中的*point改为point环境:debian4,Linux debian 2.6.18-5-686 #1 SMP Sun Aug 12 21:57:02 UTC 2007 i686 GNU/Linuxgcc version 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)
|