hello everyone i have worked on the part that comes before void main() plz some one check this out weither i am doing it right or not please..
#include<iostream.h>
#include<conio.h>
struct address
{
char country_name[30], province_name[30],city_name[30], street[30];
int street_no,h_no;
};
struct student
{
char first_name[30],last_name[30];
int student_id;
char address d;
long cell_no;
};
struct room
{
int room_number;
int floor;
char status;
};
struct allocation
{
int student_id;
int room_number;
int floor;
int date_of_allotment
int date_of_leaving;
};
oh yes this was a mistake thanks for pointing it out... i'm trying to make a hostal management system using structures,functions and file handling... i'm a student and this is my assigment