Thursday 8 October 2015

Department Store Management System

Functions used in Department Store Management System:

I have basically divided the functions used in this project into four parent functions. And, those individual functions have been described in short comments within the source code.
1. Display functions:
  • void curser(int);
  • void dbill();
  • void d_mainmenu();
  • void display(rec *,int,int);
  • void window(int,int,int,int);
  • void dis_con();
  • void d_search();
  • void highlight(int,int);
2. Main Menu functions:
  • void bill() ;
  • void edit();
  • void add();
  • void del();
  • void exit();
3. Display sub-menu functions:
  • void d_code();
  • void d_rate();
  • void d_quan();
  • void d_all();
4. Checking functions:
  • void c_code(char[]);
  • int check(char[]);
void gotoxy (int x, int y) – I have been describing this function in every C mini projectpublished on this site. You need to understand this function as it is one of the most important one used in this Department Store Management mini project.
This function allows you to print text in any place of screen. Using this function in Code::Blocks requires coding, but it can be directly used in Turbo C. Here is a code for this function in Code::Blocks.

No comments:

Post a Comment