PCI Microproject Format
PCI Microproject Format
MICRO PROJECT
TITLE OF PROJECT
1
MAHARASHTRA STATE
Certificate
This is to certify that Mr. /Ms. ……………………………………………. Roll No.……of II Semester of Diploma
in Computer Engineering of Institute, VVIT ,Pal (Code: 1207) has completed the Micro Project
satisfactorily in Subject PCI (22226) for the academic year 2021-22 as prescribed in the
curriculum.
2
INDEX
Introduction
1
Coding
2
Output
3
Conclusion
4
6 Annexure-II
3
Introduction
micro project developed using control structures in C language. The MSEB Bill
generation is a basic program used in MSEB office. The main aim is to perform
basic function that any MSEB officer or worker can do. As the name of the project
suggest, the project is about billing but it also cover the job of a worker who take
the bill
user. It is great software for the future generation as it saves time and decreases
the work of the head of the MSEB the too. It will also help the MSEB worker to
4
The codes used in this program are:-
1. HEADER FILES :
2. VOID MAIN :
Main is a driver function. Void is a return type of the main function void means not
returning anything. The program execution starts from the function main this means
3. IF STATEMENTS :
The “if statement” allows you to control if a program enters a section of code or not
based on whether a given condition is true or false. One of the important functions of
the “if” statement is that it allows the program to select an action based upon the
user's input.
5
SYNTAX: if (condition)
{statement}
4. SWITCH STATEMENTS :
Each value is called a case, and the variable being switched on is checked for
each switch case.
{case constant-1:
Statement(s);
break;
case constant-2:
statement(s);
break;
default :
statement(s);}
5. DO-WHILE LOOP :
The body of do...while loop is executed once, before checking the test expression. Hence,
SYNTAX: do
{codes}
while (condition);
6
Coding
INPUT CODE
#include<stdio.h>
#include<conio.h>
void main()
clrscr();
scanf ("%d",&previousreading);
scanf ("%d",¤treading);
totalreading=currentreading-previousreading;
printf ("totalreading=%d",totalreading);
7
if(totalreading>200)
bill=totalreading*8;
printf("\n***************************************************************************
****\n");
printf("\n
************************************************************************************
\n");
else if(totalreading>100)
bill=totalreading*7;
printf
8
else if (totalreading>50)
bill=totalreading*5;
printf("\n***************************************************************************
****\n");
printf("\n
************************************************************************************
\n");
else (totalreading<50)
getch();
9
Output
10
11
12
Conclusion
As we look back on our results and on the simulation model itself and
given the right equipment, our design could become a fairly simple addition to
the growing technical side of running a bill. The key distinction of our system
being the collection and dispersion of given inputs from workers. While our
system runs the data on when and where the customer is likely to be seated, the
host is freed up to interact with customer. While many MSEB office are starting
manually. It’s interesting looking at this system, and knowing that most of which
is very simple, that this has yet to be put into action. Thus, in the near future a
13
WEEKLY PROGRESS REPORT
MICROPROJECT
GUIDE
abstract
9. 9th Seminar
Sign of faculty
14
MICRO PROJECT
ANEEXURE II
Basic and Discipline Specific Knowledge: Apply knowledge of basic mathematics, science and
Design/ development of Solution: Design solution for well-defined technical problem and assist
Engineering Tools, Experimentation and testing: Apply modern engineering tools and
a leader to manage project and effective communicate about well-defined engineering activities.
15
1) Write C programs to use control structures.
7) Write C program using decision making structure for two-way branching to solve the given
8) Write C program using decision making structure for multi-way branching to solve the given
9) Write C program using loop statements to solve the given iterative problem.
10) Use related statements to alter the program flow in the given loop.
presentation
16
Miss. S. S. Gandhi
17