Search
 
SCRIPT & CODE EXAMPLE
 

CPP

cpp ifstream

#include <iostream>
#include <fstream>

int main(){
	std::string path = "data.txt";
    ifstream file(path);
    
    if(file.is_open()){
    	std::cout << "File is open"<< std::endl;
    } else std::cout << "File did not open" << std::endl;
    
  return 0;
}
Comment

ifstream

#include <fstream>
#include <iostream>
using namespace std;
 
int main () {
   char data[100];

   // open a file in write mode.
   ofstream outfile;
   outfile.open("afile.dat");

   cout << "Writing to the file" << endl;
   cout << "Enter your name: "; 
   cin.getline(data, 100);

   // write inputted data into the file.
   outfile << data << endl;

   cout << "Enter your age: "; 
   cin >> data;
   cin.ignore();
   
   // again write inputted data into the file.
   outfile << data << endl;

   // close the opened file.
   outfile.close();

   // open a file in read mode.
   ifstream infile; 
   infile.open("afile.dat"); 
 
   cout << "Reading from the file" << endl; 
   infile >> data; 

   // write the data at the screen.
   cout << data << endl;
   
   // again read the data from the file and display it.
   infile >> data; 
   cout << data << endl; 

   // close the opened file.
   infile.close();

   return 0;
}
Comment

PREVIOUS NEXT
Code Example
Cpp :: cast cpp 
Cpp :: C++ Nested if 
Cpp :: time complexity of sorting algorithms 
Cpp :: C++ Vector Operation Access Elements 
Cpp :: C++ vector at() method 
Cpp :: select elements from array C++ 
Cpp :: right shift in c++ 
Cpp :: c++ linked list 
Cpp :: c++ function pointer variable 
Cpp :: definition of singly linkedlist 
Cpp :: phi function (n log (log(n))) 
Cpp :: memset function in c++ 
Cpp :: files c++ 
Cpp :: binary tree 
Cpp :: c++ allocate dynamic with initial values 
Cpp :: inverted triangle c++ 
Cpp :: bool nullable to bool c# 
Cpp :: read a file line by line c++ struct site:stackoverflow.com 
Cpp :: stack implementation 
Cpp :: coinPiles 
Cpp :: *= c++ 
Cpp :: Variabili globali c++ 
Cpp :: c++ to mips converter online 
Cpp :: dream speedrun song mp4 
Cpp :: overloading templates in cpp 
Cpp :: Operatore ternario c++ 
Cpp :: how to draw a rectangle with diagonals and axes of symmetry in c ++ in the console? 
Cpp :: c++ scanf always expects double and not float 
Cpp :: max of 3 numbers in c++ 
Cpp :: empty 2d array as a member of a class class c++ 
ADD CONTENT
Topic
Content
Source link
Name
8+9 =