SlideShare a Scribd company logo
1 of 72
SESSION: 2018-19
COMPUTER SCIENCE AND ENGINEERING
PROJECT REPORT
ON
“JEWELLERY STORE MANAGEMENT SYSTEM”
SUBMITTED TO THE
BOARD OF TECHNICAL EDUCATION
UTTAR PRADESH, LUCKNOW
PRINCIPAL
Dr.M.S.CHAUHAN
SUBMITTED TO SUBMITTED BY
COMPUTER SCIENCE & MUNAUWAR ANSARI
ENGINEERING DEPARTMENT MUKESH SINGH
BICHPURI, AGRA
SESSION: 2018-19
COMPUTER SCIENCE AND ENGINEERING
PROJECT REPORT
ON
“JEWELLERY STORE MANAGEMENT SYSTEM”
SUBMITTED TO THE
BOARD OF TECHNICAL EDUCATION
UTTAR PRADESH, LUCKNOW
PRINCIPAL
Dr.M.S.CHAUHAN
HEAD OF DEPARTMENT SUBMITTED BY
COMPUTER SCIENCE& MUNAUWAR ANSARI
ENGINEERING DEPARTMENT MUKESH SINGH
BICHPURI, AGRA
SESSION: 2018-19
BICHPURI, AGRA
ACKNOWLEDGEMENT
This project involved the collection and analysis of information
from a wide variety of source and the efforts of many people
behind us.
Thus it would not have been possible to achieve the results
report in document without their help, support and
encouragement.
I would like to express my gratitude to the following people for
their help in the work leading to this report.
DR.M.S. CHAUHAN (Principal) Raja Balwant Singh Polytechnic
Bichpuri, Agra for providing us an environment to the complete
our project successfully.
Er.Kauslendra Singh Chauhan (Department of Computer Science
and Engineering) who modeled us both technically and morality
To achieve success completing the project and coordinating the
diploma 2018-2019.
We also thank our department lecturers for their help in
completing this project.
Finally, we take this opportunity to extend our deep
appreciation family and friends, for all that they meant to us
during the crucial times of the completion of this project.
TABLE OF CONTENTS
CONTENTS
Acknowledgement
Certificate
Introduction of the project
Introduction to C++
Screen Shots
Purpose of the project
Screen shots
Source code
Limitation
Bibliography
Conclusion
INTRODUCTONTO C++
Brief Description of C++
C++ is a middle-level programming language developed by
Bjarne Stroustrup starting in 1979 at Bell Labs. C++ runs on a
variety of platforms, such as Windows, Mac OS, and the various
versions of UNIX. This tutorial adopts a simple and practical
approach to describe the concepts of C++.
C++ is a statically typed, compiled, general-purpose, case-
sensitive, free-form programming language that supports
procedural, object-oriented, and generic programming.
C++ is regarded as a middle-level language, as it comprises a
combination of both high-level and low-level language features.
C++ was developed by Bjarne Stroustrup starting in 1979 at Bell
Labs in Murray Hill, New Jersey, as an enhancement to the C
language and originally named C with Classes but later it was
renamed C++ in 1983.
C++ is a superset of C, and that virtually any legal C program is
a legal C++ program.
Note − A programming language is said to use static typing
when type checking is performed during compile-time as
opposed to run-time.
Object-Oriented Programming
C++ fully supports object-oriented programming,
including the four pillars of object-oriented
development −
 Encapsulation
 Data hiding
 Inheritance
 Polymorphism
Standard Libraries
Standard C++ consists of three important parts −
 The core language giving all the building blocks including
variables, data types and literals, etc.
 The C++ Standard Library giving a rich set of functions
manipulating files, strings, etc.
 The Standard Template Library (STL) giving a rich set of
methods manipulating data structures, etc.
The ANSI Standard
The ANSI standard is an attempt to ensure that C++ is
portable; that code you write for Microsoft's compiler
will compile
without errors, using a compiler on a Mac, UNIX, a
Windows box, or an Alpha.
The ANSI standard has been stable for a while, and all
the major C++ compiler manufacturers support the ANSI
standard.
Learning C++
The most important thing while learning C++ is to focus
on concepts.
The purpose of learning a programming language is to
become a better programmer; that is, to become more
effective at designing and implementing new systems
and at maintaining old ones.
C++ supports a variety of programming styles. You can
write in the style of Fortran, C, Smalltalk, etc., in any
language. Each style can achieve its aims effectively
while maintaining runtime and space efficiency.
Use of C++
C++ is used by hundreds of thousands of programmers in
essentially every application domain.
C++ is being highly used to write device drivers and
other software that rely on direct manipulation of
hardware under real time constraints.
C++ is widely used for teaching and research because it
is clean enough for successful teaching of basic
concepts.
Anyone who has used either an Apple Macintosh or a PC
running Windows has indirectly used C++ because the
primary user interfaces of these systems are written in
C++.
ENTER A PASSWORD
PRESS ANY KEY
#include<windows.h>
#include<stdio.h>
#include<conio.h>
#include <stdlib.h>
#include<string.h>
#include<ctype.h>
#include<dos.h>
#include<time.h>
#define RETURNTIME 15
char catagories[][15]={"Rings","EarRings","Bracelet","Pendant","Chain","JewellerySet"};
voidreturnfunc(void);
voidmainmenu(void);
voidadditem(void);
voiddeleteitem(void);
voidedititem(void);
voidsearchitem(void);
voidviewitem(void);
voidcloseapplication(void);
voidcalculatebill(void);
int getdata();
int checkid(int);
intt(void);
voidPassword();
voidissuerecord();
voidloaderanim();
FILE *fp,*ft,*fs;
COORD coord= {0, 0};
ints;
char findstaff;
char password[10]={"pass"};//replace "pass"withyourownif youwishtochange the password
voidgotoxy(intx,inty)
{
coord.X= x;coord.Y = y;
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),coord);
}
struct meroDate
{
intmm,dd,yy;
};
struct staff
{
intid;
char stname[20];
char name[20];
char Material[20];
intQuantity;
intcount;
intweight;
intkarat;
char *cat;
struct meroDate issued;
struct meroDate duedate;
};
struct staff a;
intmain()
{
Password();
getch();
return0;
}
voidmainmenu()
{
system("cls");
inti;
gotoxy(20,3);
printf("ttMAIN MENU n");
printf("ttxB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB
2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2n");
gotoxy(20,5);
printf("<1>AddJewelleryItems ");
gotoxy(20,7);
printf("<2>Remove Items");
gotoxy(20,9);
printf("<3>SearchItems");
gotoxy(20,11);
printf("<4>ViewItem'sList'");
gotoxy(20,13);
printf("<5>EditItems");
gotoxy(20,15);
printf("<6>Calculate Bill");
gotoxy(20,17);
printf("<7>Close Application");
gotoxy(20,2);
t();
gotoxy(20,20);
printf("Enteryourchoice:");
switch(getch())
{
case '1':
additem();
break;
case '2':
deleteitem();
break;
case '3':
searchitem();
break;
case '4':
viewitem();
break;
case '5':
edititem();
break;
case '7':
{
system("cls");
gotoxy(16,3);
printf("tJewelleryStore ManagementSystem");
gotoxy(16,4);
printf("tInCProgramming");
gotoxy(16,5);
printf("tDevelopedBy");
gotoxy(16,7);
printf("tNaseebBajracharya- CODE-PROJECTS");
printf("ntttcode-projects.org");
gotoxy(16,8);
exit(0);
}
case '6':
calculatebill();
break;
default:
{
gotoxy(10,25);
printf("aWrongEntry!!Please re-enteredcorrectoption");
if(getch())
mainmenu();
}
}
}
voidadditem(void)
{
system("cls");
inti;
gotoxy(20,5);
printf("SELECTCATEGOIES");
gotoxy(20,7);
printf("<1>Rings");
gotoxy(20,9);
printf("<2>Ear Rings");
gotoxy(20,11);
printf("<3>Bracelet");
gotoxy(20,13);
printf("<4>Pendant");
gotoxy(20,15);
printf("<5>Chain");
gotoxy(20,17);
printf("<6>JewellerySet");
gotoxy(20,19);
printf("<7>Back to mainmenu");
gotoxy(20,21);
printf("Enteryourchoice:");
scanf("%d",&s);
if(s==7)
mainmenu();
system("cls");
fp=fopen("stf.dat","ab+");
if(getdata()==1)
{
a.cat=catagories[s-1];
fseek(fp,0,SEEK_END);
fwrite(&a,sizeof(a),1,fp);
fclose(fp);
gotoxy(21,14);
printf("The recordissucessfullysaved");
gotoxy(21,15);
printf("Save anymore?(Y/N):");
if(getch()=='n')
mainmenu();
else
system("cls");
additem();
}
}
voiddeleteitem()
{
system("cls");
intd;
char another='y';
while(another=='y')
{
system("cls");
gotoxy(10,5);
printf("Enterthe ItemCode to delete:");
scanf("%d",&d);
fp=fopen("stf.dat","rb+");
rewind(fp);
while(fread(&a,sizeof(a),1,fp)==1)
{
if(a.id==d)
{
gotoxy(10,7);
printf("The Itemisavailable");
gotoxy(10,8);
printf("Item'sname is%s",a.name);
gotoxy(10,9);
findstaff='t';
}
}
if(findstaff!='t')
{
gotoxy(10,10);
printf("Norecordisfoundmodifythe search");
if(getch())
mainmenu();
}
if(findstaff=='t')
{
gotoxy(10,9);
printf("Doyouwantto delete it?(Y/N):");
if(getch()=='y')
{
ft=fopen("test.dat","wb+");
rewind(fp);
while(fread(&a,sizeof(a),1,fp)==1)
{
if(a.id!=d)
{
fseek(ft,0,SEEK_CUR);
fwrite(&a,sizeof(a),1,ft);
}
}
fclose(ft);
fclose(fp);
remove("stf.dat");
rename("test.dat","stf.dat");
fp=fopen("stf.dat","rb+");
if(findstaff=='t')
{
gotoxy(10,10);
printf("The recordissucessfullydeleted");
gotoxy(10,11);
printf("ntDelete anotherrecord?(Y/N)");
}
}
else
mainmenu();
fflush(stdin);
another=getch();
}
}
gotoxy(10,15);
mainmenu();
}
voidsearchitem()
{
system("cls");
intd;
printf("xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2x
B2Search
ItemxB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2
");
gotoxy(20,10);
printf("1.SearchByCode");
gotoxy(20,14);
printf("2.SearchByName");
gotoxy( 15,20);
printf("EnterYourChoice");
fp=fopen("stf.dat","rb+");
rewind(fp);
switch(getch())
{
case '1':
{
system("cls");
gotoxy(25,4);
printf("xB2xB2xB2xB2xB2xB2SearchItemByCodexB2xB2xB2xB2xB2xB2");
gotoxy(20,5);
printf("Enterthe ItemCode:");
scanf("%d",&d);
gotoxy(20,7);
while(fread(&a,sizeof(a),1,fp)==1)
{
if(a.id==d)
{
Sleep(2);
gotoxy(20,6);
printf("The Itemisavailablen");
gotoxy(20,8);
printf("ItemCode:%d",a.id);
gotoxy(20,9);
printf("Category:%s",a.cat);
gotoxy(20,10);
printf("Name:%s",a.name);
gotoxy(20,11);
printf("Material:%s",a.Material);
gotoxy(20,12);
printf("Quantity:%i ",a.Quantity);
gotoxy(20,13);
printf("Weight:%i",a.weight);
gotoxy(20,14);
printf("Karat:%i",a.karat);
gotoxy(20,d+15);
findstaff='t';
}
}
if(findstaff!='t')
{
printf("aNoRecordFound");
}
gotoxy(20,17);
printf("Tryanothersearch?(Y/N)");
if(getch()=='y')
searchitem();
else
mainmenu();
break;
}
case '2':
{
char s[15];
system("cls");
gotoxy(25,4);
printf("xB2xB2xB2xB2xB2xB2SearchItemByNamexB2xB2xB2xB2xB2xB2");
gotoxy(20,5);
printf("EnterItem's Name:");
scanf("%s",s);
intd=0;
while(fread(&a,sizeof(a),1,fp)==1)
{
if(strcmp(a.name,(s))==0)
{
gotoxy(20,d+7);
//printf("TheStaff isavailable");
gotoxy(20,d+8);
printf("ItemCode:%d",a.id);
gotoxy(20,d+10);
printf("Name:%s",a.name);
gotoxy(20,d+11);
printf("Material:%s",a.Material);
gotoxy(20,d+12);
printf("Quantity:%i",a.Quantity);
gotoxy(20,d+13);
printf("Weight:%i",a.weight);
gotoxy(20,d+14);
printf("Karat:%i",a.karat);
gotoxy(20,d+15);
getch();
d+=6;
}
}
if(d==0)
printf("aNoRecordFound");
gotoxy(20,d+11);
printf("Tryanothersearch?(Y/N)");
if(getch()=='y')
searchitem();
else
mainmenu();
break;
}
default:
getch();
searchitem();
}
fclose(fp);
}
voidviewitem(void)
{
inti=0,j;
system("cls");
gotoxy(1,1);
printf("xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2x
B2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2Item's
ListxB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2
xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2xB2");
gotoxy(2,2);
printf("CATEGORY ITEM CODE ITEMNAME MATERIAL QUANTITY WEIGHT RANGE KARAT(K)");
j=4;
fp=fopen("stf.dat","rb");
while(fread(&a,sizeof(a),1,fp)==1)
{
gotoxy(3,j);
printf("%s",a.cat);
gotoxy(16,j);
printf("%d",a.id);
gotoxy(24,j);
printf("%s",a.name);
gotoxy(39,j);
printf("%s",a.Material);
gotoxy(51,j);
printf("%i",a.Quantity);
gotoxy(62,j);
printf("%i",a.weight);
gotoxy(76,j);
printf("%i",a.karat);
gotoxy(81,j);
printf("nn");
j++;
}
fclose(fp);
gotoxy(35,25);
returnfunc();
}
voidedititem(void)
{
system("cls");
intc=0;
intd,e;
gotoxy(20,4);
printf("xB2xB2xB2xB2xB2xB2EditItemsSection xB2xB2xB2xB2xB2xB2");
char another='y';
while(another=='y')
{
system("cls");
gotoxy(15,6);
printf("EnterItem'scode tobe edited:");
scanf("%d",&d);
fp=fopen("stf.dat","rb+");
while(fread(&a,sizeof(a),1,fp)==1)
{
if(checkid(d)==0)
{
gotoxy(15,7);
printf("The Itemisavailble");
gotoxy(15,8);
printf("The Item'sCode:%d",a.id);
gotoxy(15,9);
printf("Enternewname:");
scanf("%s",a.name);
gotoxy(15,10);
printf("Enternew Material:");
scanf("%s",a.Material);
gotoxy(15,11);
printf("EnternewQuantity:");
scanf("%i",&a.Quantity);
gotoxy(15,12);
printf("EnternewWeightRange:");
scanf("%i",&a.weight);
gotoxy(15,13);
printf("EnternewKarat:");
scanf("%i",&a.karat);
gotoxy(15,14);
printf("The recordismodified");
fseek(fp,ftell(fp)-sizeof(a),0);
fwrite(&a,sizeof(a),1,fp);
fclose(fp);
c=1;
}
if(c==0)
{
gotoxy(15,9);
printf("Norecordfound");
}
}
gotoxy(15,16);
printf("ModifyanotherRecord?(Y/N)");
fflush(stdin);
another=getch() ;
}
returnfunc();
}
voidreturnfunc(void)
{
{
gotoxy(15,20);
printf("PressENTERto returnto mainmenu");
}
a:
if(getch()==13)
mainmenu();
else
goto a;
}
intgetdata()
{
intt;
gotoxy(20,3);
printf("Enterthe InformationBelow");
gotoxy(20,4);
printf("Category:");
gotoxy(31,5);
printf("%s",catagories[s-1]);
gotoxy(21,6);
printf("ItemCode:t");
gotoxy(31,6);
scanf("%d",&t);
if(checkid(t) ==0)
{
gotoxy(21,13);
printf("aThe ItemCode alreadyexistsa");
getch();
mainmenu();
return0;
}
a.id=t;
gotoxy(21,7);
printf("Item'sName:");
gotoxy(33,7);
scanf("%s",a.name);
gotoxy(21,8);
printf("Material:");
gotoxy(30,8);
scanf("%s",a.Material);
gotoxy(21,9);
printf("Quantity:");
gotoxy(31,9);
scanf("%i",&a.Quantity);
gotoxy(21,10);
printf("WeightRange:");
gotoxy(34,10);
scanf("%i",&a.weight);
gotoxy(21,11);
printf("Karat:");
gotoxy(27,11);
scanf("%i",&a.karat);
gotoxy(21,11);
return1;
}
intcheckid(intt)
{
rewind(fp);
while(fread(&a,sizeof(a),1,fp)==1)
if(a.id==t)
return0;
return1;
}
intt(void)
{
time_tt;
time(&t);
printf("Date andtime:%sn",ctime(&t));
return0 ;
}
voidPassword(void)
{
system("cls");
char d[25]="PasswordProtected";
char ch,pass[10];
inti=0,j;
printf("tttttWELCOMEnttttt Tontt xB2xB2xB2xB2xB2xB2JewelleryStore Management
SystemxB2xB2xB2xB2xB2xB2n");
printf("tnnnEnterPassword:");
while(ch!=13)
{
ch=getch();
if(ch!=13&& ch!=8){
putch('*');
pass[i] = ch;
i++;
}
}
pass[i] = '0';
if(strcmp(pass,password)==0)
{
printf("nnnttPasswordmatched!!");
printf("nntPressanykeytocountinue.....");
getch();
mainmenu();
}
else
{
printf("nnnttaWarning!!nt Incorrect Password");
getch();
Password();
}
}
voidcalculatebill()
{
intcustid,wgh,chr, rte,dis;
floatchg, surchg=0, gramt,netamt;
char connm[25];
system("CLS");
printf("================================================================");
printf("n");
printf("tEnterCustomerID:");
scanf("%d",&custid);
printf("n");
printf("tEnterthe Name of the Customer:");
scanf("%s",connm);
printf("n");
printf("tEnterthe Weight(InGram) : ");
scanf("%d",&wgh);
printf("n");
printf("tEnterMakingCharges:");
scanf("%d",&chr);
printf("n");
printf("tEnterCurrentGold/Silver rate : ");
scanf("%d",&rte);
printf("n");
printf("tDiscountAmountRs.:");
scanf("%d",&dis);
printf("================================================================");
printf("n");
printf("tPressEnterToDisplayTotal Bill of Mr/Mrs :%s",connm);
getch();
system("CLS");
surchg = (rte*wgh)+chr-dis;//calculationprocess
netamt= surchg;
//printingfinalbill
printf("ntt===============JewelleryBill================n");
printf("ttCustomerIDNO :%dn",custid);
printf("n");
printf("ttCustomerName :%sn",connm);
printf("n");
printf("ttTotalWeight :%dn",wgh);
printf("n");
printf("ttDiscountAmount :%dn",dis);
printf("n");
printf("ttSurchage Amount :%8.2fn",surchg);
printf("n");
printf("ttNetAmountPaidBythe Customer :%8.2fn",netamt);
printf("tt=============================================n");
getch();
mainmenu();
}
//visitcode-projects.orgformore Free Projects
LIMITATION OF PROJECT
LIMITATIONS OF THE PROJECT just like any
other object on the earth is bounded with
some restrictions , so is the case with this
software. It is also true that each and every
software has some limitations, and even after
organization. It is also found that I is unable to
meet all the requirements of the organization
because it does not support LAN or WAN. It's
also not multiuser.
trying our best, still some are left. This
application will run only on a standalone
desktop PC. It is designed for a small
BIBLIOGRAPHY
The following table lists the referencefor the developing of my project on
“JEWELLERY STORE MANAGEMENT SYSTEM”
Books used for reference:-
1. LET US C
2. ADVANCE C++
3. System Analysisand Design
4. Fundamentalof DatabaseSystem
-BPB PUBLICATION
-KANETKAR
-BALAGURUSWAMI
-EliasM. Adwa
-Nava the
Website used for web based technical reference:-
1.www.cce.com
2.www.slideshare.net
3.www.tutorialized.com
CONCLUSION
Computerization is needed in this Shrinking world, where centralization
is also required with globalization. Conducting online test is a step in
this direction to ease the current structure of examination. This way of
conducting test on one of the most secure operating system and with
highly sophisticated technology is cost effective and save time too.
This way of conducting test not only save time but also lessens
examination, any person across the globe can appear for the
examination student’s and teacher’s frustration. It is an easier way of
giving.
Jewellery Store Management System Project Report
Jewellery Store Management System Project Report
Jewellery Store Management System Project Report

More Related Content

What's hot (8)

C & C++ Training in Ambala ! BATRA COMPUTER CENTRE
C & C++ Training in Ambala ! BATRA COMPUTER CENTREC & C++ Training in Ambala ! BATRA COMPUTER CENTRE
C & C++ Training in Ambala ! BATRA COMPUTER CENTRE
 
Adaptive Learning Materials
Adaptive Learning MaterialsAdaptive Learning Materials
Adaptive Learning Materials
 
C Language
C LanguageC Language
C Language
 
C/C++ History in few slides
C/C++ History in few slides C/C++ History in few slides
C/C++ History in few slides
 
C language part 1
C language part  1C language part  1
C language part 1
 
Introduction to C# Programming
Introduction to C# ProgrammingIntroduction to C# Programming
Introduction to C# Programming
 
The Miseducation of C++
The Miseducation of C++The Miseducation of C++
The Miseducation of C++
 
C#(2)
C#(2)C#(2)
C#(2)
 

Similar to Jewellery Store Management System Project Report

object oriented programming language fundamentals
object oriented programming language fundamentalsobject oriented programming language fundamentals
object oriented programming language fundamentalsChaithraCSHirematt
 
c programming, internshala training , govt engineering college aurangabad
c programming, internshala training , govt engineering college aurangabadc programming, internshala training , govt engineering college aurangabad
c programming, internshala training , govt engineering college aurangabadPysh1
 
Object oriented programming c++
Object oriented programming c++Object oriented programming c++
Object oriented programming c++Ankur Pandey
 
C and C++ Industrial Training Jalandhar
C and C++ Industrial Training JalandharC and C++ Industrial Training Jalandhar
C and C++ Industrial Training JalandharDreamtech Labs
 
Unit 1 of c++ part 1 basic introduction
Unit 1 of c++ part 1 basic introductionUnit 1 of c++ part 1 basic introduction
Unit 1 of c++ part 1 basic introductionAKR Education
 
Fantasy cricket game using python(intershala project)
Fantasy cricket game using python(intershala project)Fantasy cricket game using python(intershala project)
Fantasy cricket game using python(intershala project)Rr
 
C++ vs C#
C++ vs C#C++ vs C#
C++ vs C#sudipv
 
Summer training PPT Manasv Singharia.pptx
Summer training PPT Manasv Singharia.pptxSummer training PPT Manasv Singharia.pptx
Summer training PPT Manasv Singharia.pptxshokeenk14
 
computer science project for class 12 on telephone billing
computer science project for class 12 on telephone billingcomputer science project for class 12 on telephone billing
computer science project for class 12 on telephone billinganshi acharya
 
IP Lab Manual for Kerala University 3 Year UG Programme
IP Lab Manual for Kerala University 3 Year UG ProgrammeIP Lab Manual for Kerala University 3 Year UG Programme
IP Lab Manual for Kerala University 3 Year UG ProgrammeSAFAD ISMAIL
 
Ali alshehri c++_comparison between c++&amp;python
Ali alshehri c++_comparison between c++&amp;pythonAli alshehri c++_comparison between c++&amp;python
Ali alshehri c++_comparison between c++&amp;pythonAliAAAlshehri
 
Telephone directory in c
Telephone directory in cTelephone directory in c
Telephone directory in cUpendra Sengar
 
Python_final_print_vison_academy_9822506209.pdf
Python_final_print_vison_academy_9822506209.pdfPython_final_print_vison_academy_9822506209.pdf
Python_final_print_vison_academy_9822506209.pdfVisionAcademyProfSac
 
Introduction to Programming
Introduction to ProgrammingIntroduction to Programming
Introduction to ProgrammingALI RAZA
 
Summer Training Project.pptx
Summer Training Project.pptxSummer Training Project.pptx
Summer Training Project.pptxAmanadvani3
 

Similar to Jewellery Store Management System Project Report (20)

object oriented programming language fundamentals
object oriented programming language fundamentalsobject oriented programming language fundamentals
object oriented programming language fundamentals
 
c programming, internshala training , govt engineering college aurangabad
c programming, internshala training , govt engineering college aurangabadc programming, internshala training , govt engineering college aurangabad
c programming, internshala training , govt engineering college aurangabad
 
Object oriented programming c++
Object oriented programming c++Object oriented programming c++
Object oriented programming c++
 
C and C++ Industrial Training Jalandhar
C and C++ Industrial Training JalandharC and C++ Industrial Training Jalandhar
C and C++ Industrial Training Jalandhar
 
Unit 1 of c++ part 1 basic introduction
Unit 1 of c++ part 1 basic introductionUnit 1 of c++ part 1 basic introduction
Unit 1 of c++ part 1 basic introduction
 
Fantasy cricket game using python(intershala project)
Fantasy cricket game using python(intershala project)Fantasy cricket game using python(intershala project)
Fantasy cricket game using python(intershala project)
 
C++ vs C#
C++ vs C#C++ vs C#
C++ vs C#
 
Summer training PPT Manasv Singharia.pptx
Summer training PPT Manasv Singharia.pptxSummer training PPT Manasv Singharia.pptx
Summer training PPT Manasv Singharia.pptx
 
Student record
Student recordStudent record
Student record
 
Ums in c
Ums in cUms in c
Ums in c
 
computer science project for class 12 on telephone billing
computer science project for class 12 on telephone billingcomputer science project for class 12 on telephone billing
computer science project for class 12 on telephone billing
 
IP Lab Manual for Kerala University 3 Year UG Programme
IP Lab Manual for Kerala University 3 Year UG ProgrammeIP Lab Manual for Kerala University 3 Year UG Programme
IP Lab Manual for Kerala University 3 Year UG Programme
 
School Management (c++)
School Management (c++) School Management (c++)
School Management (c++)
 
Ali alshehri c++_comparison between c++&amp;python
Ali alshehri c++_comparison between c++&amp;pythonAli alshehri c++_comparison between c++&amp;python
Ali alshehri c++_comparison between c++&amp;python
 
Telephone directory in c
Telephone directory in cTelephone directory in c
Telephone directory in c
 
Python_final_print_vison_academy_9822506209.pdf
Python_final_print_vison_academy_9822506209.pdfPython_final_print_vison_academy_9822506209.pdf
Python_final_print_vison_academy_9822506209.pdf
 
miniproject.pptx
miniproject.pptxminiproject.pptx
miniproject.pptx
 
Introduction to Programming
Introduction to ProgrammingIntroduction to Programming
Introduction to Programming
 
Introduction to C Programming
Introduction to C ProgrammingIntroduction to C Programming
Introduction to C Programming
 
Summer Training Project.pptx
Summer Training Project.pptxSummer Training Project.pptx
Summer Training Project.pptx
 

Recently uploaded

Call Girls Sarovar Portico Naraina Hotel, New Delhi 9873777170
Call Girls Sarovar Portico Naraina Hotel, New Delhi 9873777170Call Girls Sarovar Portico Naraina Hotel, New Delhi 9873777170
Call Girls Sarovar Portico Naraina Hotel, New Delhi 9873777170simranguptaxx69
 
Russian Call Girls Nashik Anjali 7001305949 Independent Escort Service Nashik
Russian Call Girls Nashik Anjali 7001305949 Independent Escort Service NashikRussian Call Girls Nashik Anjali 7001305949 Independent Escort Service Nashik
Russian Call Girls Nashik Anjali 7001305949 Independent Escort Service Nashikranjana rawat
 
Freegle User Survey as visual display - BH
Freegle User Survey as visual display - BHFreegle User Survey as visual display - BH
Freegle User Survey as visual display - BHbill846304
 
Joint GBIF Biodiversa+ symposium in Helsinki on 2024-04-16
Joint GBIF Biodiversa+ symposium in  Helsinki on 2024-04-16Joint GBIF Biodiversa+ symposium in  Helsinki on 2024-04-16
Joint GBIF Biodiversa+ symposium in Helsinki on 2024-04-16Dag Endresen
 
Species composition, diversity and community structure of mangroves in Barang...
Species composition, diversity and community structure of mangroves in Barang...Species composition, diversity and community structure of mangroves in Barang...
Species composition, diversity and community structure of mangroves in Barang...Open Access Research Paper
 
885MTAMount DMU University Bachelor's Diploma in Education
885MTAMount DMU University Bachelor's Diploma in Education885MTAMount DMU University Bachelor's Diploma in Education
885MTAMount DMU University Bachelor's Diploma in Educationz xss
 
Low Rate Call Girls Bikaner Anika 8250192130 Independent Escort Service Bikaner
Low Rate Call Girls Bikaner Anika 8250192130 Independent Escort Service BikanerLow Rate Call Girls Bikaner Anika 8250192130 Independent Escort Service Bikaner
Low Rate Call Girls Bikaner Anika 8250192130 Independent Escort Service BikanerSuhani Kapoor
 
Poly-film-Prefab cover agricultural greenhouse-polyhouse structure.pptx
Poly-film-Prefab cover agricultural greenhouse-polyhouse structure.pptxPoly-film-Prefab cover agricultural greenhouse-polyhouse structure.pptx
Poly-film-Prefab cover agricultural greenhouse-polyhouse structure.pptxAgrodome projects LLP
 
Call Girls Ahmedabad 7397865700 Ridhima Hire Me Full Night
Call Girls Ahmedabad 7397865700 Ridhima Hire Me Full NightCall Girls Ahmedabad 7397865700 Ridhima Hire Me Full Night
Call Girls Ahmedabad 7397865700 Ridhima Hire Me Full Nightssuser7cb4ff
 
Along the Lakefront, "Menacing Unknown"s
Along the Lakefront, "Menacing Unknown"sAlong the Lakefront, "Menacing Unknown"s
Along the Lakefront, "Menacing Unknown"syalehistoricalreview
 
9873940964 High Profile Call Girls Delhi |Defence Colony ( MAYA CHOPRA ) DE...
9873940964 High Profile  Call Girls  Delhi |Defence Colony ( MAYA CHOPRA ) DE...9873940964 High Profile  Call Girls  Delhi |Defence Colony ( MAYA CHOPRA ) DE...
9873940964 High Profile Call Girls Delhi |Defence Colony ( MAYA CHOPRA ) DE...Delhi Escorts
 
Call In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCR
Call In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCRCall In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCR
Call In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCRjennyeacort
 
Sustainable Clothing Strategies and Challenges
Sustainable Clothing Strategies and ChallengesSustainable Clothing Strategies and Challenges
Sustainable Clothing Strategies and ChallengesDr. Salem Baidas
 
Spiders by Slidesgo - an introduction to arachnids
Spiders by Slidesgo - an introduction to arachnidsSpiders by Slidesgo - an introduction to arachnids
Spiders by Slidesgo - an introduction to arachnidsprasan26
 
9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi
9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi
9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhidelih Escorts
 
(RIYA) Kalyani Nagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(RIYA) Kalyani Nagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(RIYA) Kalyani Nagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(RIYA) Kalyani Nagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Hi FI Call Girl Ahmedabad 7397865700 Independent Call Girls
Hi FI Call Girl Ahmedabad 7397865700 Independent Call GirlsHi FI Call Girl Ahmedabad 7397865700 Independent Call Girls
Hi FI Call Girl Ahmedabad 7397865700 Independent Call Girlsssuser7cb4ff
 

Recently uploaded (20)

E-Waste Management
E-Waste ManagementE-Waste Management
E-Waste Management
 
Call Girls Sarovar Portico Naraina Hotel, New Delhi 9873777170
Call Girls Sarovar Portico Naraina Hotel, New Delhi 9873777170Call Girls Sarovar Portico Naraina Hotel, New Delhi 9873777170
Call Girls Sarovar Portico Naraina Hotel, New Delhi 9873777170
 
Russian Call Girls Nashik Anjali 7001305949 Independent Escort Service Nashik
Russian Call Girls Nashik Anjali 7001305949 Independent Escort Service NashikRussian Call Girls Nashik Anjali 7001305949 Independent Escort Service Nashik
Russian Call Girls Nashik Anjali 7001305949 Independent Escort Service Nashik
 
Freegle User Survey as visual display - BH
Freegle User Survey as visual display - BHFreegle User Survey as visual display - BH
Freegle User Survey as visual display - BH
 
Joint GBIF Biodiversa+ symposium in Helsinki on 2024-04-16
Joint GBIF Biodiversa+ symposium in  Helsinki on 2024-04-16Joint GBIF Biodiversa+ symposium in  Helsinki on 2024-04-16
Joint GBIF Biodiversa+ symposium in Helsinki on 2024-04-16
 
Species composition, diversity and community structure of mangroves in Barang...
Species composition, diversity and community structure of mangroves in Barang...Species composition, diversity and community structure of mangroves in Barang...
Species composition, diversity and community structure of mangroves in Barang...
 
885MTAMount DMU University Bachelor's Diploma in Education
885MTAMount DMU University Bachelor's Diploma in Education885MTAMount DMU University Bachelor's Diploma in Education
885MTAMount DMU University Bachelor's Diploma in Education
 
Low Rate Call Girls Bikaner Anika 8250192130 Independent Escort Service Bikaner
Low Rate Call Girls Bikaner Anika 8250192130 Independent Escort Service BikanerLow Rate Call Girls Bikaner Anika 8250192130 Independent Escort Service Bikaner
Low Rate Call Girls Bikaner Anika 8250192130 Independent Escort Service Bikaner
 
Escort Service Call Girls In Shakti Nagar, 99530°56974 Delhi NCR
Escort Service Call Girls In Shakti Nagar, 99530°56974 Delhi NCREscort Service Call Girls In Shakti Nagar, 99530°56974 Delhi NCR
Escort Service Call Girls In Shakti Nagar, 99530°56974 Delhi NCR
 
Poly-film-Prefab cover agricultural greenhouse-polyhouse structure.pptx
Poly-film-Prefab cover agricultural greenhouse-polyhouse structure.pptxPoly-film-Prefab cover agricultural greenhouse-polyhouse structure.pptx
Poly-film-Prefab cover agricultural greenhouse-polyhouse structure.pptx
 
Call Girls Ahmedabad 7397865700 Ridhima Hire Me Full Night
Call Girls Ahmedabad 7397865700 Ridhima Hire Me Full NightCall Girls Ahmedabad 7397865700 Ridhima Hire Me Full Night
Call Girls Ahmedabad 7397865700 Ridhima Hire Me Full Night
 
Along the Lakefront, "Menacing Unknown"s
Along the Lakefront, "Menacing Unknown"sAlong the Lakefront, "Menacing Unknown"s
Along the Lakefront, "Menacing Unknown"s
 
9873940964 High Profile Call Girls Delhi |Defence Colony ( MAYA CHOPRA ) DE...
9873940964 High Profile  Call Girls  Delhi |Defence Colony ( MAYA CHOPRA ) DE...9873940964 High Profile  Call Girls  Delhi |Defence Colony ( MAYA CHOPRA ) DE...
9873940964 High Profile Call Girls Delhi |Defence Colony ( MAYA CHOPRA ) DE...
 
Call In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCR
Call In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCRCall In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCR
Call In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCR
 
Call Girls In { Delhi } South Extension Whatsup 9873940964 Enjoy Unlimited Pl...
Call Girls In { Delhi } South Extension Whatsup 9873940964 Enjoy Unlimited Pl...Call Girls In { Delhi } South Extension Whatsup 9873940964 Enjoy Unlimited Pl...
Call Girls In { Delhi } South Extension Whatsup 9873940964 Enjoy Unlimited Pl...
 
Sustainable Clothing Strategies and Challenges
Sustainable Clothing Strategies and ChallengesSustainable Clothing Strategies and Challenges
Sustainable Clothing Strategies and Challenges
 
Spiders by Slidesgo - an introduction to arachnids
Spiders by Slidesgo - an introduction to arachnidsSpiders by Slidesgo - an introduction to arachnids
Spiders by Slidesgo - an introduction to arachnids
 
9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi
9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi
9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi
 
(RIYA) Kalyani Nagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(RIYA) Kalyani Nagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(RIYA) Kalyani Nagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(RIYA) Kalyani Nagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Hi FI Call Girl Ahmedabad 7397865700 Independent Call Girls
Hi FI Call Girl Ahmedabad 7397865700 Independent Call GirlsHi FI Call Girl Ahmedabad 7397865700 Independent Call Girls
Hi FI Call Girl Ahmedabad 7397865700 Independent Call Girls
 

Jewellery Store Management System Project Report