我正在尝试从文本文件中打印出前3行。
states 10
start 0
accept 9
代码:
int main(int argc, char*argv[]){
FILE *fp;
fp = fopen(argv[1], "r");
printf("File is open successfully.\n");
char *ptr, buf[256];
int states; //states
int start; //start
int accept; //accept
while((ptr = fgets(buf, 256, fp)) != NULL){
printf("%s", ptr);
//process this line from the file
}
printf("============================\n");
char s1[100], s2[100], s3[100];
fscanf("%s %i",s1, &states);
fscanf("%s %i",s2, &start);
fscanf("%s %i",s3, &accept);
printf("states: %i\n start: %i\n accpet: %i\n", states, start, accept);
}
我收到的输出:
states: 32528
start: -29575952
accpet: 32767
打印出文件中的内容后。并打印出随机数,我似乎无法获得状态,开始并接受数字。
感谢。
答案 0 :(得分:1)
好像你没有正确使用fscanf。第一个参数应该是文件描述符:
int fscanf(FILE *stream, const char *format, ...)
您可以在http://www.tutorialspoint.com/c_standard_library/c_function_fscanf.htm
看到用法(例如)