
The employee record system is very simple and for very beginner mini
project. It is based one the menu-driven program for elementary database
management. It employ all the basic technique of file handling in C. It
consists of following features
Writing the data in binary file
Reading the data from binary file
Modify the record
Delete the record
This project is a learning milestone for beginner who want to step into the database management project in C.
Source Code
/**
* A menu-driven program for elementary database management
* @author: Bibek Subedi
* @language: C
* This program uses file handling in Binary mode
*/
/// List of library functions
#include <stdio.h> ///for input output functions...