It would be my utmost pleasure to express my sincere thanks to my Computer Science Teacher Mrs. Anshu in providing a helping hand in this project. Her unflagging patience, creativity and immense knowledge that she shared with me have proved highly beneficial to me and have made my Project File both possible and successful.
Sukhjeet Singh
XII-C
CERTIFICATE
This is to certify that Sukhjeet Singh of class XII-C has completed this project titled “Book-Shop” under my guidance and this project may be considered as the part of the practical exam of AISSCE conducted by CBSE.
INTRODUCTION
This program is capable of managing records which are useful in a Book-Shop. It is capable of adding, deleting, modifying records and also generating a bill. The program includes simple and easy to understand menu. It is user friendly and is suitable for any Bookshop in the world. Hope you like it.
HARDWARE AND SOFTWARE
REQUIREMENTS
* Windows 95 or above
* Turbo C++
* 40 MB RAM
* 500 MHz processor
HEADER FILES USED AND THEIR PURPOSE
* FSTREAM.H – for file handling, cin and cout
* PROCESS.H – for exit() function
* CONIO.H – for clrscr() and getch() functions
* STDIO.H – for standard I/O operations
FILES GENERATED
DATA FILES
BOOK.DAT
PROGRAM FILE
BOOKSHOP.CPP
OBJECT FILE
BOOKSHOP.OBJ
EXECUTION FILE
BOOKSHOP.EXE
CODE
#include<fstream.h>
#include<conio.h>
#include<string.h>
#include<stdio.h>
#include<process.h>
class bookshop
{
int bookno;
long int no;
char bookname[30];...