Skip to content

Commit

Permalink
Made change in README and added a few comments in main.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
iamKunal committed Jul 7, 2016
1 parent 64ea2e7 commit d3ec3a5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# School-Management-Sys
School Management System - First Semester Project
This is a School Management Project I made under Dr. Tanima Dutta as First Semster Project at IITI.

It serves as a basic School/Class Management System (for a single subject)


4 changes: 2 additions & 2 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ void gotoxy(int x,int y){ //gotoxy function for UNIX
#ifndef unix //If Compilation Environment is not UNIX
#define CLS() system("cls") //Windows clearscreen function
#include<windows.h>
void gotoxy(int x,int y){
void gotoxy(int x,int y){ //gotoxy for Windows - it isn't my code
y--;
static HANDLE h=NULL;
if(!h){
Expand All @@ -26,7 +26,7 @@ void delay(unsigned int secs){ //Defining delay function for Windows

#endif
#define FLBSTUD "student.txt" //Macros for storing filenames for ease
#define FLBCLAS "class.txt"
#define FLBCLAS "class.txt" //The files are binary files
#define RULE(x) cout<<'\n'; for(int _=0;_<80;_++) cout<<x; cout<<'\n' //Outputs Horizontal Consisting of 'x's
#define CL(cl,x) cl==0?1:cl==x //Macro for disabling search through class
using namespace std;
Expand Down

0 comments on commit d3ec3a5

Please sign in to comment.