View Single Post
Old 12-13-2004, 08:00 PM   #11 (permalink)
Valmont
[code][/code] enforcer
 
Valmont's Avatar
 
Join Date: Mar 2003
Location: Netherlands
Posts: 1,544
Valmont is on a distinguished road
Code:
Code:
#include <fstream>
#include <iostream>

int main(int argc, char *argv[])
{
  ofstream createOpenTest("ABCDEFGHIJ LKMNO PQRST UVWXY ZABCD EFGHI.state");
  int a(0);
  createOpenTest<<5;
  createOpenTest.close();
  
  ifstream readOpenTest("ABCDEFGHIJ LKMNO PQRST UVWXY ZABCD EFGHI.state");
  readOpenTest>>a;
  readOpenTest.close();
  
  cout<<a<<endl;

  return 0;
}
If you want to know what it does then read a basic tutorial on file streams.
__________________
Valmont is offline   Reply With Quote