Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

book shop inventory system, Study Guides, Projects, Research of Data Structures and Algorithms

it about book shop inventory system

Typology: Study Guides, Projects, Research

2019/2020

Uploaded on 02/29/2020

sai-vineeth-tummala
sai-vineeth-tummala 🇮🇳

1 document

1 / 19

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Book Shop Inventory System
A REPORT ON MINOR PROJECT
SUBMITED
BY
D.Sai Sravan-[161FA07102]
II B. Tech (I.T)
ADVANCED DATA STRUCTURES
Dr P.SUBBA RAO
2017-18 II Semester
DEPARTMENT OF INFORMATION
TECHNOLOGY
VADLAMUDI, GUNTUR DISTRICT
PIN-522 213
A.P
161fa07102 Page 1
pf3
pf4
pf5
pf8
pf9
pfa
pfd
pfe
pff
pf12
pf13

Partial preview of the text

Download book shop inventory system and more Study Guides, Projects, Research Data Structures and Algorithms in PDF only on Docsity!

Book Shop Inventory System

A REPORT ON MINOR PROJECT

SUBMITED

BY

D.Sai Sravan-[161FA07102]

II B. Tech (I.T) ADVANCED DATA STRUCTURES

Dr P.SUBBA RAO

2017-18 II Semester

DEPARTMENT OF INFORMATION TECHNOLOGY

VADLAMUDI, GUNTUR DISTRICT

PIN-522 213

A.P

CERTIFICATE

Book Shop Inventory System

D. Sai Sravan 161FA

Signature of internal examiner signature of HOD nominee

Signature of HOD

Signature of External examiner

PROBLEM STATEMENT The Purpose of The book shop inventory System is maintain the inventory of books that are being sold at the book shop. List of the book is already Given in the Structure List .if you want to Add More book Than add in the Structure List .it Contains The Member such as Author, Title, Price, Publisher, Quantity etc.

INTRODUCTION This project BOOKSHOP SYSTEM includes some facilities for the retail book shop to maintain records of the books and also search, display, modification, delete etc the books available. This software searches the books data which is store in the record. The software used for small shops for maintaining their records related to books selling, printing the reports and cost savings.

ANALYSIS AND DESIGN All the Book Shop Keepers can use our project to run their store easily. By using this project they can store all the info. Related with the books available in the store. They can also search a particular book easily by getting the info. From the project. In this we also define the information of all the customers who wants to purchase the books from their store. In this they can also store the info. Of all the orders of all those books which are not available in the store. Because of this computerization, any book store owner can run their store easily in User friendly Environment. The Main objectives of this project are:

  • Reduction of paper work
  • Automation of existing manual information systems.
    • Reduction of manual processing
    • Keep track of daily information exchange at the server by the administrator.
    • Increase in processing and transfer speeds of information over the network.
  • Decrease in processing time
    • Reduction of errors and viruses due to absence of internet
    • Keeping track that message should be delivered at the correct destination.
    • Fast retrieval of all type of information
    • Good efficiency and response time
  • More consistent data handling
    • A user-friendly system which do not require any special training or expertise of computer CODE

}date; char publisher[10]; int quantity; }; //to search the book in the list int search(struct list table[],char c1[],char c2[],int n); //to get the input string void get(char string[]); main() { int index,no_of_record; char title[30],author[20]; char responce[10],quantity[10]; struct list book[]= { { "Ritche","C Language",245.00,"May",1977,"PHI", }, {

"A S Hornby","Oxford Advanced Dictionary",550.00,"Jan",2001,"OUP", }, { "Ivor Horton", "Beginning Java", 527.50,"Nov",2012,"WILEY", }, { "Dr. B.V. Raju","Finite Automata",225.00,"Oct",2010,"TMH", }, { "Kochan","Programming in C",275.50,"july",1983,"hayden", }, { "Rajiv Mall", "Software Engineering",310.00,"Jun",2011,"TMH", }, { "Balagurusamy","Basic",268.00,"Jan",1984,"TMH", }, { "Andrew S. Tanenbaum", "Computer Networks",420.00,"Aug",2009,"TMH",

if(index !=-1) { printf("\n\n YOUR DESIRE BOOK AVAILBLE IN THE STOCK.\n\n"); printf("[AUTHOR] [TITLE] [PRICE] [MONTH] [YEAR] [PUBLISHER]\n"); printf("-------------------------------------------------------------"); printf("\n%s %s %.2f %s %d %s \n
n",book[index].author,book[index].title,book[index].price,book[index].dat e.month,book[index].date.year,book[index].publisher); printf("\n\n ENTER THE NUMBER OF COPIES:"); get(quantity); if(atoi(quantity)<=book[index].quantity) printf("\n\nCOST OF THE %d COPIES IS=%.2f\n ",atoi(quantity),book[index].price*atoi(quantity)); else printf("\n REQUIRED COPIES NOT IN THE STOCK \n\n"); } Else printf("\n YOUR DESIRED BOOK IS NOT IN THE STOCK.\n\n"); printf("\n DO YOU WANT TO PURCHASE ANY OTHER BOOK? (Y/N):"); get(responce);

while(responce[0]=='y'||responce[0]=='y'); printf("\n\n THANK YOU....!!!!\n"); printf("Designed By: Deepak Gupta\n"); printf("www.i-world-tech.blogspot.in\n\n\n"); } void get(char string[]) { char c; int i=0; do { c=getchar(); string[i++]=c; } while(c !='\n'); string[i-1]='\0'; } int search(struct list table[],char c1[],char c2[],int n) { int i;

For the given book title it should show the details of book? Ans:- Input:- Title:-C Language Author:-Ritche Output:- Title |Author |cost |year C Language| Ritche |230 | Result I obtained my output of the source code is shown below:-

CONCLUSION

 http://i-world-tech.blogspot.in/2013/01/mini-project-in-c-book- shop-inventory.html