标题:C语言文件操作——用个二位数组存储字符,遇到“;”另取数组的一行存储
取消只看楼主
ztpeng110
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2015-9-29
 问题点数:0 回复次数:0 
C语言文件操作——用个二位数组存储字符,遇到“;”另取数组的一行存储
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#define BOOL int
#define TRUE 1
#define FALSE 0
#define N 255
void main( void )
{
   FILE *stream;
   char line[N][N]={0};
   int i,j=0;
   if( (stream = fopen( "1.exe", "r" )) != NULL )
   {
    for (i=0;!feof(stream);i++)
    {
        do
        {
            line[i][j]=fgetc(stream);//返回值为负数!
            putchar (line[i][j]);
            //printf("%c",&line[i][j]);
            j++;
        }while(line[i][j]!=';');
    }
      fclose( stream );
   }
  getch();
}
    //    line[i][j]    -1 '

[ 本帖最后由 ztpeng110 于 2015-9-30 00:07 编辑 ]
搜索更多相关主题的帖子: include stream C语言 
2015-09-29 23:39



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-457794-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.169510 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved