Search
 
SCRIPT & CODE EXAMPLE
 

CPP

reading matrix from text file in c++ and adding them and then storing them in oother c++ file

#include <iostream>
using std::cerr;
using std::cout;
using std::endl;
#include <fstream>
using std::ifstream;
#include <cstdlib> // for exit function
// This program reads values from the file 'example.dat'
// and echoes them to the display until a negative value
// is read.
int main()
{
   ifstream indata; // indata is like cin
   int num; // variable for input value
indata.open("example.dat"); // opens the file
   if(!indata) { // file couldn't be opened
      cerr << "Error: file could not be opened" << endl;
      exit(1);
   }
indata >> num;
   while ( !indata.eof() ) { // keep reading until end-of-file
      cout << "The next number is " << num << endl;
      indata >> num; // sets EOF flag if no value found
   }
   indata.close();
   cout << "End-of-file reached.." << endl;
   return 0;
}
Comment

PREVIOUS NEXT
Code Example
Cpp :: how to measure cpp code performace 
Cpp :: reverse a stack in c++ using another stack 
Cpp :: default parameter c++ a field 
Cpp :: how to change the icon of an exe in c++ 
Cpp :: big o notation practice c++ 
Cpp :: tu hi hai aashiqui song lyrics 
Cpp :: remove digit from number c++ 
Cpp :: what do I return in int main() function c++ 
Cpp :: comentar todas linhas de uma vez vs code 
Cpp :: unions c++ 
Cpp :: how to block the screen c++ 
Cpp :: delete[] cpp 
Cpp :: go to particular place in vector using iterator 
Cpp :: C++ meaning :: 
Cpp :: c++ freecodecamp course 10 hours youtube 
Cpp :: fibonacci sequence c++ 
Cpp :: initialize object as null in c++ 
Cpp :: return multiple objects from a function C++ using references 
Cpp :: how to get a section of a string in c++ 
Cpp :: swift functions from cpp 
Cpp :: warning in range-based for loop in C++. How to resolve it in vscode? 
Cpp :: Use command line arguments to create file c++ 
Cpp :: run a c++ file in terminal 
Cpp :: std 
Cpp :: unreal ensureMsgf example 
Cpp :: In-range Adder 
Cpp :: Chef and IPC Certificates codechef solution in c++ 
Cpp :: qt/c++ exception handler 
Cpp :: C++ bool 
Cpp :: qrandomgenerator bounded 
ADD CONTENT
Topic
Content
Source link
Name
2+5 =