Project 2

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 14

Shree mouni Vidhyapeeth’s

Institute of Civil and Rural Engineering,Gargoti


A

MICRO PROJECT

Under The Course

Programming in ‘C’
With title

“Restaurant Billing System”


Submitted by
02. Barage Lalit Dattatray.
10. Dhalait Farhat Saleem.
18. Kamble Rutuja Ramesh.
26. Malavi Sahil Vishnu.
34. Patil Sanika Satappa.
42. Shelake Sanika Anil.
In Partial Fulfilment of

Diploma in Computer Engineering

Department of Computer Engineering


(2020-21)
1|Page
CERTIFICATE

This is certify that the micro project entitled "Restaurant billing


system"under the course of “Computer Engineering ”summited to the
institute of civil and Rural Engineeging , Gargoti in partial fulfilment of
Diploma in Computer Engineering is a record of original work done by
Lalit, Farhat, Rutuja, Sahil, Sanika, Sanika during the period from March
2021 to June 2021 under my supervision and guidance and it has not
copied or summited with other similar title by any candidates in any
Diploma College.

Head Of Department Signature of the Guide

2|Page
DECLARATION

We Lalit, Farhat, Rutuja, Sahil, Sanika, Sanika hereby declared that


the Micro Project submitted to the Institute of Civil and Rural
Engineering,Gargoti in partial fulfillment of Diploma in Computer
Engineering micro project done by us in the period of 2020-2021 under
the supervision and guidance of Mr.R.V.Powar (sir),Selection grade
lecturer in department of Computer Engineering, the project has not
copied or submitted with other similar title by an any candidate in any
diploma college.

Place:Gargoti. Signature of the Candidates


Date:28/06/2021. 02. Lalit D. Barage
10. Farhat S. Dhalait
18. Rutuja R. Kamble
26. Sahil V Malavi
34. Sanika S. Patil
42. Sanika A. Shelake
3|Page
SHREE MOUNI VIDHYAPEETH’S
INSTITUTE OF CIVIL AND RURAL ENGINEERING
GARGOTI. [AIDED]

CERTIFICATE

This is to certify that Mr /Ms. ……………………………………………………………….…


Roll No. ……………….... , of Second Semester of Diploma in …………………….…..
………………………………………… of Institute, ………………………………………………….
…………………………………………….. (Code: ………………..) has completed the term
work satisfactorily in subject Programming in ‘C’ (22226) for the academic year
20………to 20……….. as prescribed in the curriculum.

Date : …………… Enrollment no: .............................


Place : Gargoti Seat no : ..............................

Project Guide Head Of The Department Principal

4|Page
INDEX
SR. No content Page no.
1 Introduction 06

2 Aim of Project 06

3 Project coding 07

4 Project Output 12

5 Resources required 13

6 Skill Development 14

7 Conclusion 14

*Project Team Members:


Sr. Roll Enrollment No. Name Signature
No. No.

1. 02 2000120296 Barage Lalit Dattatray

2. 10 2000120327 Dhalait Farhat Saleem

3. 18 2000120331 Kamble Rutuja Ramesh

4. 26 2000120313 Malavi Sahil Vishnu

5. 34 2000120336 Patil Sanika Satappa

6. 42 2000120329 Shelake Sanika Anil

5|Page
Restaurant billing system

 Introduction :

The project is "Restaurant Billing System"software for monitoring and


controllong the transactions in restaurant.
Restaurant Billing System is a window application designed to help users
maintain and organize restaurant.The system process transectionand stores th.
e resulting data.
The billing system should provide service to the user, collect user usage
records, and generate invoices of each credit expire.

 Aim of micro project :

1) The aim of the study is to develop a billing system for hotel industry.
2) To design a system that can be used to store customers billing records.
3) To implement a system that can be used to retrieve and update customer
billing records easily.

6|Page
 Project Coding:

#include<stdio.h>
#include<conio.h>

struct about{
char name[50];
char adrs[100];
};

prtline();

void main()
{
struct about s[10];

int n,price, gst=0, total=0;


char ch;

clrscr();

textcolor(YELLOW);
cprintf("\n ____________ Menu Card _________________\n\n");

printf("\n 1) All Cold-drinks (200ml) - 25rs\n\n 2) Pizza


- 200rs 9) Burger - 100rs\n\n 3) Sandwitch - 60rs 10)
Chicken 65 - 60rs \n\n 4) Pasta - 40rs 11) Noodles - 60rs\n\n
5) Misal pav - 50rs 12) Pav Bhaji - 85rs\n\n 6) Chicken Rice -
80rs 13) Soup - 45rs\n\n 7) Samosa - 30rs 14) Dosa -
60rs\n\n 8) Salad - 50rs 15) Paneer Masala -120rs\n ");

printf("\n
++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++\n");

7|Page
printf("\n CUSTOMER INFORMATION :\n ");
printf("\n Customer Name: ");
scanf("%s", s[1].name);

printf("\n Customer Address: ");


scanf("%s", s[1].adrs);
printf("\n
*******************************************************************************
\n\n");

printf("\n Enter the name of items: ");


scanf("%s",ch);

printf("\n Enter the number of item: ");


scanf("%d",&n);

switch(n)
{
case 1:
n=25;
gst=(n/100)*18;
total=n+gst;
break;

case 2:
n=200;
gst=(n/100)*18;
total=n+gst;
break;

8|Page
case 3:
n=60;
gst=(n/100)*18;
total=n+gst;
break;

case 4:
n=40;
gst=(n/100)*18;
total=n+gst;
break;

case 5:
n=50;
gst=(n/100)*18;
total=n+gst;
break;

case 6:
n=80;
gst=(n/100)*18;
total=n+gst;
break;

case 7:
n=30;
gst=(n/100)*18;
total=n+gst;
break;

case 8:
n=50;
gst=(n/100)*18;
total=n+gst;
break;

9|Page
case 9:
n=100;
gst=(n/100)*18;
total=n+gst;
break;

case 10:
n=60;
gst=(n/100)*18;
total=n+gst;
break;

case 11:
n=60;
gst=(n/100)*18;
total=n+gst;
break;

case 12:
n=85;
gst=(n/100)*18;
total=n+gst;
break;

case 13:
n=45;
gst=(n/100)*18;
total=n+gst;
break;

case 14:
n=60;
gst=(n/100)*18;
total=n+gst;
break;

10 | P a g e
case 15:
n=120;
gst=(n/100)*18;
total=n+gst;
break;
}

printf("\n ***************************** Hotel Amrut


***********************************\n");

printf("\n customer name: %s\n",s[1].name);

printf("\n customer address: %s\n",s[1].adrs);


prtline();
printf("\n Item Price Gst Total\n");
printf("\n %4s %4d %4d %4d\n",ch,n,gst,total);

prtline();
textcolor(WHITE);
cprintf("\nThank you! do visit again\n");

getch();

prtline()
{
printf("\n
==============================================
=============================== \n");
}

11 | P a g e
 Project Output :

12 | P a g e
 Resources Required :

Sr. Name of Resource Specification Qty.


No. /material

1. Laptop/Computer Intel(R) core(AT)i5 1

2. Softwares used Turbo C ...

3. WebSites: ...
https://www.geeksforgeeks.org/f
References
ood-ordering-system-in-c/
Books: Let Us C - by Yashvant
Kanetkar

13 | P a g e
 Skills Developed :

1. Improved the ability to work quickly and with team members.


2. Improved communication and presentation skills.
3. Improved Ability to handle file operations.
4. Improved Ability to write different structures and functions.
5. Ability to handle exceptions also improved.

 Conclusion :

After Completion of “Restaurant Billing System” software program we


Understood and learned the software development,validation of software
program and other technical terms related to development of software
program using ‘C’ programming language.

14 | P a g e

You might also like