student management system full report
#13

presented by:
Santosh
Parmjeet Kaur

[attachment=11737]
REQUIREMENTS
1) Hardware Requirements
a) Processor:- Pentium 866 MHZ
b) RAM:- 64 MB
c) Hard Disk:- 20 GB
d) Keyboard
e) CD-Rom
f) Color Monitor
2) Software Requirements
a) Language Turbo C++
b) Operating System:- MS-DOS
INTRODUCTION TO ‘C++’
C++ was developed by Bjarne Stroustrup of AT&T Bell Laboratories in the early 1980's, and is based on the C language. The name is a pun - "++" is a syntactic construct used in C (to increment a variable), and C++ is intended as an incremental improvement of C. Most of C is a subset of C++, so that most C programs can be compiled (i.e. converted into a series of low-level instructions that the computer can execute directly) using a C++ compiler.
C is in many ways hard to categorize. Compared to assembly language it is high-level, but it nevertheless includes many low-level facilities to directly manipulate the computer's memory. It is therefore an excellent language for writing efficient "systems" programs. But for other types of programs, C code can be hard to understand, and C programs can therefore be particularly prone to certain types of error. The extra object-oriented facilities in C++ are partly included to overcome these shortcomings.
SOURCE CODE
#include<iostream.h>
#include<conio.h>
#include<stdio.h>
#include<string.h>
#include<dos.h>
#include<stdlib.h>

class fee
{
public:

char n[25],cl[10];
long int id,tf,dp,i1,i2,i3,bl;


public:

void get()
{
cout<<" Enter Student Name: ";
gets(n);
gotoxy(2,3);
cout<<"Enter Class: ";
cout<<"\n\n(class name should MCA, BCA, BA)";
gotoxy(15,3);
gets(cl);
gotoxy(2,8);
cout<<"Enter DownPayment: ";
cin>>dp;
}
};

void main()
{
FILE *p;
fee ob;

int c;
clrscr();
while(1)
{

gotoxy(18,8);
cout<<"******************************************";
gotoxy(20,10);
cout<<"Press 1 for Admmission";
gotoxy(20,12);
cout<<"Press 2 for Check All Data";
gotoxy(20,14);
cout<<"Press 3 for Check Individual Class Data";
gotoxy(20,16);
cout<<"Press 4 for Check One Student Detail";
gotoxy(20,18);
cout<<"Press 5 for Deposit Fee";
gotoxy(20,20);
cout<<"Press 6 for Check Fee Structure";
gotoxy(20,22);
cout<<"Press 7 for Exit";
gotoxy(20,24);
cout<<"Enter Your Choice: ";
gotoxy(18,26);
cout<<"******************************************";
gotoxy(39,24);
cin>>c;
clrscr();
switch©
{
case 1:
char y='y';
while(y=='y'||y=='Y')
{

rewind(p);
p=fopen("fdata.dat","rb+");
int count=0;
while(fread(&ob,sizeof(ob),1,p)==1)
{
count=count+1;
}

p=fopen("fdata.dat","ab+");
ob.get();
if(count==0)
{
ob.id=101;
}
if(count!=0)
{
ob.id=101+count;
}
if(stricmp(ob.cl,"MCA")==0)
{
ob.tf=50000;
}
if(stricmp(ob.cl,"BCA")==0)
{
ob.tf=25000;
}
if(stricmp(ob.cl,"BA")==0)
{
ob.tf=7000;
}
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Tagged Pages: lpu software engineering q solve draw an er diagram for university management system student module where student can downloa, report pdf formet for student management system,
Popular Searches: srson student management system, tuition for russell, student management system project full document report pdf, who is anak in the bible, what is the tuition for brooklyn, constraint, who is phineas in the bible,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Messages In This Thread
RE: student management system full report - by seminar class - 05-04-2011, 12:25 PM

Possibly Related Threads...
Thread Author Replies Views Last Post
  SAMBA SERVER ADMINISTRATION full report project report tiger 3 4,780 17-01-2018, 05:40 PM
Last Post: AustinnuAke
  air ticket reservation system full report project report tiger 16 46,954 08-01-2018, 02:33 PM
Last Post: RaymondGom
  event management system project report tiger 3 6,400 30-08-2017, 12:43 PM
Last Post: jaseela123d
  Development of a Recipe Management System seminar topics 1 3,068 24-04-2017, 10:17 AM
Last Post: Zakir Hussain
  An Efficient Algorithm for Mining Frequent Patterns full report project topics 3 4,806 01-10-2016, 10:02 AM
Last Post: Guest
  SMS BASED STUDENT INTIMATION seminar presentation 18 11,598 03-09-2016, 02:59 PM
Last Post: jaseela123d
  online examination full report project report tiger 14 42,960 03-09-2016, 11:20 AM
Last Post: jaseela123d
  The impact of technology on queue management system holax 1 1,446 14-07-2016, 02:39 PM
Last Post: seminar report asees
  School Management System project topics 9 8,554 27-06-2016, 09:23 AM
Last Post: computer science crazy
Smile school management system amrita 2211 4 5,661 27-06-2016, 09:23 AM
Last Post: computer science crazy

Forum Jump: