#include <fstream>
#include <iostream>
using namespace std;
void InsertBook( char* title, char* ISBN, char* price, char* quantity ) {
fstream book;
book.open( "data.txt", fstream::app | fstream::out );
book << title << "|";
book << ISBN << "|";
book << price << "|";
book << quantity << "|" << endl;
book.close( );
}
|
|
|
|