Results 1 to 5 of 5
How to create a database using c language it includes structures, pointers,arrays and switch.. please help me masters!...
- 04-07-2011 #1Just Joined!
- Join Date
- Apr 2011
- Posts
- 2
create a database using c language
How to create a database using c language it includes structures, pointers,arrays and switch.. please help me masters!
- 04-07-2011 #2forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,096
Hello and welcome to the forums!

Homework questions aren't permitted here, but post if you'll post the code that you have so far, someone might be able to help you with that.oz
→ new members/users: read this first | new member faq
→ no private messages requesting computer support - post them on the forums!
→ please use the "report post" button to alert our forum admins to problematic posts rather than responding to them yourself.
- 04-07-2011 #3Just Joined!
- Join Date
- Apr 2011
- Posts
- 2
#include <stdio.h>
typedef struct {
char name[51];
char student_no[16];
} Student;
int main(void) {
Student student1;
student1.name = "Fagballs";
student1.student_no = "0120-1213-4423";
return 0;
};
this is the **** ive done.
- 04-07-2011 #4
I doubt your professor will appreciate the Student's name.
There are no pointers. Are you familiar with using pointers? If so then you probably know how to proceed. If not, perhaps this helps:
The C Book — Pointers
You can't just write 10 lines of code and expect it to be done, or done for you.
- 04-07-2011 #5
I'm gonna jump in here and close this thread. It's obviously a homework assignment, and it sounds like you basically want us to design it for you.
If you end up having questions on a specific concept and would like some help in understanding it, feel free to ask. But you need to start doing the work on your own first.DISTRO=Arch
Registered Linux User #388732


