Ярлыки

вторник, 29 марта 2011 г.

C++ Чтение файла построчно

#include 
#include 
#include 

using namespace std;

int main()
{
     string line;
     ifstream file("hello.world");
     
     getline(file,line);
     cout << line;
}
link

Комментариев нет:

Отправить комментарий