Cs Report
Cs Report
on
Submitted by
Riya Sirohi(230255)
Rishika Jalan(230254)
Samaa
Shagun Mogha
Samriddhi Agarwal
It is certified that Riya Sirohi, Rishika Jalan, Samaa, Shagun Mogha, Samriddhi Agarwal
B.Tech(1st Semester) student from SET, Mody University, Lakshmangarh, has under gone
project based learning (PBL) on “Movie Ticket Booking System” for the partial
and Engineering. She has successfully completed the PBL work for the current semester
RIYA SIROHI
RISHIKA JALAN
SAMAA
SHAGUN MOGHA
SAMRIDDHI AGARWAL
List of Figures
TABLE OF CONTENTS
Acknowledgment ………………………………………………………………. 4
Abstract ………………………………………..……………………………….. 6
Introduction ……………………………………………………………………. 7
22 Conclusion ……………………………………………………………………... 24
ABSTRACT
Table of Contents
Certificate
Acknowledgement
Table of content
List of Figures
List of Tables
Abstract
1. Introduction
1.1
2. Components description (Hardware and
Software Details/Standards etc.
2.1
2.2
3. Design/ Methodology
3.1
4. Steps Performed
4.1
4.2
5. Result and Discussion
1. INTRODUCTION
C is a general-purpose programming language that is extremely popular,
simple and flexible. Itis machine-independent, structured programming
language which is used extensively in various applications. C was the
basics language to write everything from operating systems (Windows and
many others) to complex programs like the Oracle database, Git, Python
interpreter and more. It is said that 'C' is a god's programming language.
One can say, C is a base for the programming. If you know 'C,' you can
easily grasp the knowledge of the other programming languages that uses
the concept of 'C'. It is essential to have a background in computer memory
mechanisms because it is an important aspect when dealing with the C
programming language.
● How C works ?
C is a compiled language. A compiler is a special tool that compiles the
program and convert sit into the object file which is machine readable.
After the compilation process, the linker will combine different object files
and creates a single executable file to run the program. The following
diagram shows the execution of a 'C' program.
Nowadays, various compilers are available online, and you can use any of
those compilers. The functionality will never differ and most of the
compilers will provide the features required to execute both 'C' and 'C++'
programs.
Following is the list of popular compilers available online:
• Clang compiler
• MinGW compiler (Minimalist GNU for Windows)
• Portable 'C' compiler
• Turbo C
END
● ALGORITHM : The Movie Ticket Booking project is based on the C
program. The codes are given below
#include<stdio.h>
int main()
{
int n,t,i,temp;
float rs;
char name[12],movie;
char id,date;
printf(“~~~~~~WELCOME IN OUR OFFICIAL PAGE~~~~~~ \n”);
printf(“Printing the name of the movie : \n”);
printf(“1.Oppenheimer \n 2.Barbie \n 3.The Marvels \n 4.Godzilla Minus
One \n\n\n”);
printf(“Choose the movie:\n”);
scanf(“%d”,&id);
temp=id;
if(id==1)
{
printf(“Entering into the Oppenheimer…….\n”);
}
else if(id==2)
{
printf(“Entering into the Barbie…..\n”);
}
else if(id==3)
{
printf(“Entering into the The Marvels……\n”);
}
else if(id==4)
{
printf(“Entering into the Godzilla Minus One….\n”);
}
else
{
printf(“Database error…...\n Please enter write digits”);
}
return 0;
}
printf(“You entering into the Movie Ticket Booking Section\n\n\n”);
printf(“The amount of movie is 350 Rs. per audience\n”);
printf(“Number of Audience\n”);
scanf(“%d”,&n);
n=n-1;
if(n==1)
{
printf(“Enter the name of the Audience\n”);
scanf(“%s”,&name[n]);
}
else
{
printf(“Enter the names of the Audiences\n”);
for(i=0;i<=0;i++)
{
scanf(“%s”,&name[n]);
}
scanf(“%d”,&date);
scanf(“%d”,&t);
if(t==1)
else if(t==2)
{
printf(“Your time is: 1:30PM\n”);
else if(t==3)
else
puts(name);
if(temp==1)
else if(temp==2)
else if(temp==3)
}
else if(temp==4)
else
printf(“Database problem\n”);
printf(“Date: %d:12:2023\n”,date);
rs=(n+1)*350;
if(t==1)
else if(t==2)
else if(t==3)
else
{
return 0;
Mention the aspects those are working similarly on your project work. You can
also cover the concepts of related project works those are already working in
current engineering scenario. (minimum 400 words, maximum 600 words)
Mention your proposed work (minimum 400 words, maximum 600 words)