Skip to content

Instantly share code, notes, and snippets.

@RawanLaz
RawanLaz / Student Database File Structure
Created May 1, 2015 20:29
Student database using file structure
#include <iostream>
#include<fstream>
using namespace std;
#include<string.h>
#include<vector>
#include<algorithm>
//offset id
struct student
{
char ID[10];