Mini project report sample

You might also like

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

A Project Report on

Digital Clock In C

BACHELOR OF COMPUTER APPLICATION

By

PRINCE KUMAR OJHA

AJU/231136

Under the guidance of

Mr. Debanjan Ghosh

Assistant Professor

&

Dr. Arvind Kumar Pandey

Dean

School of Engineering and IT

DEPARTMENT OF COMPUTER SCIENCE AND IT

ARKA JAIN UNIVERSITY, JHARKHAND


CERTIFICATE

This is to certify that the project entitled “Digital Clock in C”, is bonafide
work of PRINCE KUMAR OJHA bearing enrolment Number: AJU/231136
under the guidance of Mr. Debanjan Ghosh submitted during studies the
Program BACHELOR OF COMPUTER APPLICATION, at ARKA JAIN
University, Jharkhand during the year 2023 - 2024.

Dr. Arvind Kumar Pandey


Dean
ARKA JAIN University, Jharkhand
dr.arvind@arkajainuniversity.ac.in

02
ABSTRACT

The idea is to form an individual functions for every operation. All the functions are unified
together to form software.

1. Add Time : Input Time For Start Clock

2. Clock: Now You Will See Clock Is Started

03
ACKNOWLEDGEMENT

I would like to express my special thanks of gratitude to Assistant Professor Mr. Debanjan
Ghosh and Dean Dr. Arvind Kumar Pandey, who gave me the golden opportunity to work on
this wonderful mini project on “Digital Clock in C.” Their guidance and support have been
invaluable throughout this project. This opportunity has helped me conduct extensive
research and learn many new concepts in C programming. I am deeply thankful to them for
their encouragement and insightful suggestions. I would also like to thank my peers for their
continuous support and motivation. This project has significantly enhanced my learning
experience. I am truly grateful for this enriching opportunity.

04
DECLARATION

I, Aditi Sahu, hereby declare that the Project entitled “Student Information Management
System in C++” was undertaken at ARKA JAIN University as part of my BACHELOR OF
COMPUTER APPLICATION program. This project was completed during my first year,
second-semester studies as a mini project. The primary objective of this project was to design
and implement a Student Information Management using the C++ programming language. It
involved extensive coding, debugging, and testing to ensure the project's functionality and
user-friendliness. The project aimed to enhance my programming skills, problem-solving
abilities, and understanding of C++ programming concepts. I am grateful to ARKA JAIN
University for providing me with the opportunity and resources to complete this project
successfully. I submit this project report with the hope that it reflects my commitment and
passion for computer science and serves as a testament to my academic progress at ARKA
JAIN University, Jharkhand.

Prince Kumar Ojha


AJU/231136

05
CONTENTS

S.NO CONTENT Page No.

1. Certificate II

2. Abstract III

3. Acknowledgement IV

4. Declaration V

5. Introduction 07

6. Used Specification 08

7. Code 09-14

8. Output 15-20

9. Conclusion 21

10. Reference 22

06
INTRODUCTION

A Student Information Management System (SIMS) in C++ is a program that allows you to
store, manage, and manipulate information related to students. This system can be used by
educational institutions to keep track of student records, including personal details, academic
performance, attendance, and more.

It allows you to add student records, display all student records, and exit the program. You
can expand upon this by adding features like searching for students, updating student records,
or saving data to a file for persistence.

07
USED SPECIFICATION

 Processor: Intel P-IV System

 Processor Speed: 250 MHz to 833 MHz

 Ram: 512 Mb Ram

 Hard Disk: 40 Gb

 Operating System: Windows 2000 Professional

08
CODE

#include<stdio.h>

#include<conio.h>

#include<stdlib.h>

int main(void){

int h=0,m=0,s=0;

printf("Enter time in format of HH MM SS");

scanf("%d%d%d",&h,&m,&s);

start:

for(h;h<=24;h++){

for(m;m<60;m++){

for(s;s<60;s++){

system("cls");

printf("\n\n\n\n\n\t\t\t\t\t\t\t\t %d:%d:%d",h,m,s);

09
for(double i=0;i<99999900;i++){

i++;

i--;

s=0;

m=0;

goto start;

getch();

return 0;

10
OUTPUT

Enter time in format of HH MM SS : 12 00 00

12:00:00

12:00:01

12:00:02

12:00:03

12:00:04

12:00:05

12:00:06

12:00:07

12:00:08

12:00:09

12:00:10

12:00:11

12:00:12

12:00:13

12:00:14

12:00:15

12:00:16

11
Enter time in format of HH MM SS : 03: 00 00

03:00:00

03:00:01

03:00:02

03:00:03

03:00:04

03:00:05

03:00:06

03:00:07

03:00:08

03:00:09

03:00:10

03:00:11

03:00:12

03:00:13

03:00:14

03:00:15

03:00:16

12
CONCLUSION

In conclusion, the Student Information Management System in C++ is a versatile and


indispensable tool for educational institutions, enabling efficient student data management,
enhancing administrative processes, and contributing to improved decision-making through
data analysis and reporting.

Future enhancements to SIMS may include features such as student performance analysis,
communication tools for parent-teacher interactions, automated notifications, and integration
with learning management systems.

21

REFERENCE
[1] Booch, Grady, " Analysis and Design with Applications", The

Benjamin/Cummings Publishing Company, Inc., 1994.

[2] Deitel, H. M., Deitel, P. J., "C How to Program", Prentice-Hall, Inc., 1994.

[3] Pohl, Ira, "Programming Using C", The Benjamin/Cummings Publishing

Company, Inc., 1993.

[4] Sommerville, Ian, "Software Engineering", Addison-Wesley Publishing Company

Inc., 1992.

[5] White, Iseult, "Using the Booch Method", The Benjamin/Cummings Publishing

Company, Inc., 1994.

[6] E. Balagurusamy, “Programming with C”, Tata McGraw Hill , 2021.


[7] E. Balaguruswamy, “Analysis and Design”, Tata McGraw Hill,2008.

[8] K R Venugopal, Rajkumar Buyya, T Ravishankar, “Mastering C”, Tata McGraw

Hill, 2017.

[9] Cooper, S., Wanda, D., Pausch, R., Alice: “3-D tool for introductory programming

concepts”, The Journal of Computing in Small Colleges, 15, (5), 107--116, 2000.

[10] Dawson, M., “Beginning C Game Programming”, Boston, MA: Thomson Course

Technology, 2004.

[11] Rucker, R., “Software Engineering and Computer Games”, New York, NY:

Addison- Wesley, 2002.

22

You might also like