project on student information management system

24
PROJECT STUDENT RECORD MANAGEMENT SYSTEM

Upload: rehan-ijaz

Post on 12-Jan-2017

967 views

Category:

Engineering


3 download

TRANSCRIPT

Page 1: Project on Student information management system

PROJECT STUDENT RECORD MANAGEMENT SYSTEM

Page 2: Project on Student information management system

PROGRAMED BY

• REHAN IJAZ F15-09

Page 3: Project on Student information management system

PROJECT ABSTRACT

• Student Management System is a simple console application without graphics, developed using C programming language.• This mini project utilizes various aspects of the C language

such as functions, arrays, pointers, file handling, and data structure.

Page 4: Project on Student information management system

FEATURESThe key features of Student management system are:• Add records• List record• Delete record • With the use of FILE HANDLING

Page 5: Project on Student information management system

SYSTEM REQUIREMENTS

• Operating System: Windows 2000/ NT/ Xp /Vista• RAM: 256 MB or more• HARD DISK 40 GB or more• Processor P3 or High• Compiler Standard C Compiler

Page 6: Project on Student information management system

HEADER FILES

• #include <stdio.h>• #include <conio.h>• #include <string.h>• #include <dos.h>• #include <stdlib.h>• #include <ctype.h>

Page 8: Project on Student information management system

#INCLUDE <CONIO.H>

• textbackground (used to change of current background color)• textcolor (used to change the color of text)• gotoxy (places cursor at a desired location on

screen)• clreol (clears end line)

Page 10: Project on Student information management system

#INCLUDE <DOS.H>

• delay used to suspend execution of a program for a particular time• sound produces the sound

Page 12: Project on Student information management system

#INCLUDE <CTYPE.H>

• toupper Convert to Uppercase

Page 13: Project on Student information management system

MAIN MENU OF THE PROGRAM

• [A] ADD RECORD• [B] LIST RECORD• [C] DELETE RECORD• [D] QUIT PROGRAM

Page 14: Project on Student information management system

FLOW CHART & SNAPSHOTS•MAIN MENU• ADD RECORD• LIST RECORD• QUIT PROGRAM

Page 15: Project on Student information management system
Page 16: Project on Student information management system

MAIN MENU

A

B

C

D

Exit

Add record

List record

Delete record

Page 17: Project on Student information management system

Add record

Student #

First name

Last name

Course code

Main Menu

Page 18: Project on Student information management system
Page 19: Project on Student information management system

LIST RECORD

Display Record

Press any key

MAIN MENU

Page 20: Project on Student information management system
Page 21: Project on Student information management system

DELETE RECORD

Y/N

Record deleted

Main Menu

Page 22: Project on Student information management system
Page 23: Project on Student information management system

QUIT PROGRAM

Print R/N

Exit

Page 24: Project on Student information management system

THANK YOU