码迷,mamicode.com
首页 > 其他好文 > 详细

C---读取数据

时间:2017-11-03 14:19:51      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:tor   net   main   top   读取   取数据   rto   clu   file   

 

参考:http://blog.csdn.net/js_xj/article/details/5863734

#include <stdio.h> 
#include <string.h>
int main()
{
      char buf[]="Golden Global View";
      char* token = strtok(buf, " ");
      while(token != NULL)
      {
           printf("%s\n", token);
           token = strtok(NULL, " ");
      }
      return 0;
}

写成这样就报错了

int read(){
    FILE* fp;
    fp = fopen("C:\\Users\\Administrator\\Desktop\\tiaoshi\\example.txt","r");
    char* token = strtok(fp," ");//mistake
    while(token!=NULL){
        printf("%s",token);
        token = strtok(NULL,",");
    }
    return 0;
}

 

C---读取数据

标签:tor   net   main   top   读取   取数据   rto   clu   file   

原文地址:http://www.cnblogs.com/kprac/p/7777588.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!