Top Banner
www.iCBSE.com COMPUTER SCIENCE PROJECT FILE ON BOOK-SHOP PROJECT PREPARED BY: Navi Arora XII Session: 2008-2009
33
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript

www.iCBSE.com

COMPUTER SCIENCE PROJECT FILE ON BOOK-SHOP

PROJECT PREPARED BY:

Navi Arora XII Session: 2008-2009 Boards Roll Number: 6229340 Mother Divine Sr. Sec. Public School

www.iCBSE.com

TABLE OF CONTENTSCertificate Acknowledgement Working description of project Header files and their purpose Files generated Coding & outputs

Bibliography

www.iCBSE.com

ACKNOWLEDGEMENTIt would be my utmost pleasure to express my sincere thanks to My Computer Science Teacher Ms. Ramanjeet Kaur 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.

Navi Arora XII

www.iCBSE.com

CERTIFICATEThis is to certify that Navi Arora of class XII has completed this project titled Book-Shop under my guidance & this project may be considered as the part of the practical exam of AISSCE conducted by CBSE.

Ms. Ramanjeet Kaur Computer Science Mother Divine Public School

www.iCBSE.com

HEADER FILES USED AND THEIR PURPOSE

1.

FSTREAM.H for file handling, cin and cout

2.

PROCESS.H for exit() function CONIO.H for clrscr() and getch() functions

3.

4.

STDIO.H for standard I/O operations DOS.H for execution of program STRING.H for string handling GRAPHICS.H for graphical display

5.

6.

7.

www.iCBSE.com

8.

IOMANIP.Hfor C++ streams I/O manipulators

FILES GENERATED

DATA FILES BOOK.DAT

PROGRAM FILE BOOK.CPP

www.iCBSE.com

OBJECT FILE BOOK.OBJ

EXECUTION FILE BOOK.EXE

www.iCBSE.com

WORKING DESCRIPTION OF

PROJECTThis program is designed to keep the friends record. This program consists of six options as follows

1. 2. 3. 4. 5.

TO ADD TO SHOW TO SEARCH TO MODIFY TO DELETE

www.iCBSE.com

6.

TO EXIT

CODING

www.iCBSE.com

//******************************************************* // PROJECT BOOK-SHOP //******************************************************* //******************************************************* // INCLUDED HEADER FILES //******************************************************* #include"stdio.h" #include"conio.h" #include"fstream.h" #include"stdlib.h" #include"dos.h" #include"string.h" #include"graphics.h" #include"iomanip.h" //******************************************************* // CLASS NAME : BOOK //******************************************************* class book { public: char name[20]; char author[20]; int a; void getdata(); void show(); }; //******************************************************* // FUNCTIONS TO GET AND SHOW DATA //******************************************************* void book::getdata() { cout