ifstream一行一行的读TXT文件

#include <windows.h>

#include <iostream.h>
#include <fstream.h>

void main()
{

    ifstream ifile;
    char str1[256] ;
    ifile.open("sfile.txt");
    while(ifile)
    {
        ifile.getline(str1,256);
        MessageBox(0,str1,"内容",0);
    }
    return;
}

你可能感兴趣的:(include)