Hey folks!
I have to do a project in the school and there I must implement (!) a database in C. Does any of you guys know how I could make this work???!!!! I'm so noob in these things and so please help me!![]()
thanks
This is a discussion on Database programming in C within the C Programming forums, part of the General Programming Boards category; Hey folks! I have to do a project in the school and there I must implement (!) a database in ...
Hey folks!
I have to do a project in the school and there I must implement (!) a database in C. Does any of you guys know how I could make this work???!!!! I'm so noob in these things and so please help me!![]()
thanks
This is your data structureCode:typedef struct { char name[100]; } data_st;
This is your databaseCode:data_st database[1000];
You add
- code to dynamically allocate the database, rather than limiting it to 1000
- code to load and save to a file
- code to add / edit / print / delete / search records