Search
 
SCRIPT & CODE EXAMPLE
 

CPP

c++ files

// basic file operations
#include <iostream>
#include <fstream>
using namespace std;

int main () {
  ofstream myfile;
  myfile.open ("example.txt");
  myfile << "Writing this to a file.
";
  myfile.close();
  return 0;
}
Comment

c++ open file

// Reading a file

#include <iostream>
#include <fstream>
#include <string>

int main() 
{
    std::string line;

    std::ifstream file("example.txt");
    if(file.is_open())
    {
        while(getline(file, line))
        {
            std::cout << line << '
';
        }
        file.close();
    }
    else std::cout << "Unable to open file";

    return 0;
}
Comment

file c++

#include <iostream>
#include <string>
#include <fstream> //write and read
//#include <ifstream> //read
//#include <ofstream> //write

int main () {
  std::string line;
  std::ofstream myfileWrite;
  std::ifstream myfileRead;
  myfileWrite.open("example.txt");
  myfileRead.open("example.txt");
  myfileWrite << "Writing this to a file.
";
  while (getline(myfileRead,line)){
    std::cout << line << '
';
  }
  myfileWrite.close();
  myfileRead.close();
  return 0;
}
Comment

C++ files

#include <fstream> 

/*
ofstream 	Creates and writes to files
ifstream 	Reads from files
fstream 	A combination of ofstream and ifstream: creates, reads, and writes to files
*/

int main() {
  // Create and open a text file
  ofstream MyFile("filename.txt");

  // Write to the file
  MyFile << "Files can be tricky, but it is fun enough!";

  // Close the file
  MyFile.close();
} 
Comment

files in c++

#include <iostream>
#include <fstream>
using namespace std;
class person{
public:
    string wife , son , mother;
    int brothers_num , sisters_num;
};

int main()
{
    person Ahmed;
    Ahmed.wife = "Aya";
    Ahmed.son = "Badr";
    Ahmed.mother = "Fatma";
    Ahmed.brothers_num = 2;
    Ahmed.sisters_num = 2;
    fstream new_file;
    new_file.open("database.txt" , ios::out );
    if(new_file.fail()){
        cout<<"can't open the files
";
    }
    new_file.write((char*)&Ahmed , sizeof(Ahmed));
    new_file.close();

    person Khaled;
    new_file.open("database.txt" , ios::in);
    new_file.read((char*)&Khaled , sizeof(Khaled));
    new_file.close();

    cout<<Khaled.wife;

    return 0;
}
Comment

C++ Files

#include <iostream>
#include <fstream>
Comment

files c++

fstream  afile;
afile.open("file.dat", ios::out | ios::in );
Comment

PREVIOUS NEXT
Code Example
Cpp :: How to see gateway on linux 
Cpp :: if else c++ 
Cpp :: Implicit conversion casting 
Cpp :: C++ Class Template Declaration 
Cpp :: virtual function in c++ 
Cpp :: calling by reference c++ 
Cpp :: bitmap 
Cpp :: 83. remove duplicates from sorted list solution in c++ 
Cpp :: how togreper 
Cpp :: ifstream file (“code2.txt”); dev C++ 
Cpp :: Numbers Histogram in c++ 
Cpp :: print numbers after decimal point c++ 
Cpp :: Array declaration by specifying the size and initializing elements in C++ 
Cpp :: remove item from layout 
Cpp :: simple program for sign in and sign up in c++ 
Cpp :: finding nth most rare element code in c++ 
Cpp :: #include <iostream #include <stdio.h using namespace std; int main() { int a[5]; a[0]=12; a[1]=13; a[2]=14; a[3]=15; 
Cpp :: glUniform bool 
Cpp :: jquery datepicker default date not working 
Cpp :: static member fn , instance 
Cpp :: CodeChef Starters 30 Division 4 (Rated) Swapping Chefs Way 
Cpp :: digits in c++ 
Cpp :: .txt file into .cpp 
Cpp :: c++ sort numbers by magnitude/absolute value 
Cpp :: can you add a bool and an int 
Cpp :: c++ freecodecamp course 10 hours youtube 
Cpp :: stack using cpp 
Cpp :: sfml get position 
Cpp :: convert c program to c++ online 
Cpp :: labs c++ 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =