User Profile

Collapse

Profile Sidebar

Collapse
yenra
yenra
Last Activity: Oct 2 '06, 12:57 PM
Joined: Sep 27 '06
Location: Philippines
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • yenra
    started a topic Inserting in a list in Alphabetical order
    in C

    Inserting in a list in Alphabetical order

    ..how can I insert entry in a linked list and arrange my entries according to the name in alphabetical order? I need to make a student record which contains the name, yr level and course of the student.
    Is bubble sort applicable in this problem?if yes, can anyone help me how to implement it..tnx..
    See more | Go to post

  • yenra
    replied to How to make a telephone directory????
    in C
    help!!!how to work with linked list and file???

    ..please, I really need help..I have a hard time understanding this topic.. I don't know how to implement this. I need to make a program of an address book using this structure definition in C...

    typedef struct AddTag{
    char surname[100];
    char firstname[100];
    char address[100];
    char tel_no[50];...
    See more | Go to post

    Leave a comment:


  • yenra
    replied to How to make a telephone directory????
    in C
    Really need help in making my address book program...

    How to make a telephone directory????
    --------------------------------------------------------------------------------

    Can anyone help me in making this program?!...

    I need to make a telephone directory using structure definition..

    typedef struct AddressTag{
    char surname[55];
    char givenname[55];
    char middleinitial[5];...
    See more | Go to post

    Leave a comment:


  • yenra
    replied to How to make a telephone directory????
    in C
    >
    sori, I made a mistake. it should be struct AddressTag *next..
    ..pls help me..I really had a dificulty in doing this.....
    See more | Go to post

    Leave a comment:


  • yenra
    started a topic How to make a telephone directory????
    in C

    How to make a telephone directory????

    Can anyone help me in making this program?!...

    I need to make a telephone directory using structure definition..

    typedef struct AddressTag{
    char surname[55];
    char givenname[55];
    char middleinitial[5];
    char telnum[55];
    struct PersonTag *next;
    } AddType;

    I need to have function for inserting, editing and deleting an entry.Entries should be inserted in alphabetical...
    See more | Go to post
No activity results to display
Show More
Working...