Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

Sequential File in C++

#include <iostream>
using std::cerr;
using std::cin;
using std::cout;
using std::endl;
using std::ios;

#include <fstream>
using std::ofstream;

#include <cstdlib> 
using std::exit;

int main()
{
   ofstream outClientFile( "clients.dat", ios::out );

   if ( !outClientFile )
   {
      cerr << "File could not be opened" << endl;
      exit( 1 );
   }

   int account = 12;
   char name[80] = "This Is A Test"; 
   double balance = 123.123;

   outClientFile << account << ' ' << name << ' ' << balance << endl;



   return 0;
}