C++ da Text Dosyasını Okumak ve Ekrana Yazdırmak

Merhaba arkadaşlar bu makalemizde  C++ da text dosyasındaki satırları okuyup ekrana yazdıracağız.

 


 

 

 

 

 

 

 

 

Şekil 1


 


 

 

 

 

 

 

 

Şekil 2

 

cpp_read_a_file.cpp

 

#include <iostream>

#include <fstream>

#include <string>

 

using namespace std;

 

int main() {

     ifstream filename;

     filename.open("cppfile.txt");

     string line;

     if (filename.is_open()) {

          while (filename) {

                getline(filename, line);

                cout << line<< '\n';

          }

     }

     else {

          cout << "Couldn't open file. Dosya acilamadi!\n";

     }

     return 0;

}      

 

Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN

About Bahadır Şahin

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.

0 comments:

Öne Çıkan Yayın

GridView da Seçili Satırı DetailsView da Göstermek

Merhaba arkadaşlar bu makalemizde GridView nesnesi ile birlikte DetailsView nesanesini birlikte kullanacağız. GridView da seçili satırın de...