Search:

Type: Posts; User: MalickT

Search: Search took 0.00 seconds.

  1. Replies
    9
    Views
    3,065

    well i suddenly feel very stupid. Im way too...

    well i suddenly feel very stupid. Im way too beginner to understand this. My assingment is that i have to learn how do create 100*struct Raamat linked list. A list of hundred books and they are...
  2. Replies
    9
    Views
    3,065

    ok so how about i have structure: struct...

    ok so how about i have structure:


    struct Raamat
    {
    char *pISBN;
    char *pAuthor;
    char *pPealkiri;
    int Ilmus;
    struct Raamat *Next;
  3. Replies
    9
    Views
    3,065

    i have struct: struct Raamat { char...

    i have struct:


    struct Raamat
    {
    char *pISBN;
    char *pAuthor;
    char *pPealkiri;
    int Ilmus;
    };
  4. Replies
    9
    Views
    3,065

    what does a linked list structure look like?

    I have read all sample codes of how to access the linked-list, how to travel trough the linked-list, how to add new data to the linked-list. But all the samples asume that i allready have a linked...
  5. Replies
    11
    Views
    2,802

    thats why i want code+detailed expanation if its...

    thats why i want code+detailed expanation if its not too mutch trouble. If i see a code, i will understand it sooner or later, i have done that before, studying the code. Please help me out here.
  6. Replies
    11
    Views
    2,802

    i still need the exact code, i cant programm it...

    i still need the exact code, i cant programm it by own. Im way too beginner with this....
  7. Replies
    11
    Views
    2,802

    yes i understand the typedef makes things easyer,...

    yes i understand the typedef makes things easyer, ok i use that. but someone help me to programm the function
  8. Replies
    11
    Views
    2,802

    foxman, i understand the picture now but i still...

    foxman, i understand the picture now but i still dont know how to programm it, im very beginner in all this sry
  9. Replies
    11
    Views
    2,802

    yes i know typedefing is more easyer but my...

    yes i know typedefing is more easyer but my teatcher wants to leave it. I have heard of this head and tail stuff in my class but i dont understand it, thats why i dont know the answer to the second...
  10. Replies
    11
    Views
    2,802

    double linked-structure nightmare help

    My teatcher wants his students to go crazy using pointers and linked-structures. I dont mind studying it but im really stuck with this one and exam aproaches. I do understand the linked-structure...
  11. it does now compile. It says "passins arg 2 of...

    it does now compile. It says "passins arg 2 of strcmp makes pointer from integer without a cast"

    Im using pointers to a string (i have to).
  12. how do i compare first letters in two strings?

    I have two pointers to a string



    char *name1;
    char *name2;


    user imputs the names. How do i use strcmp function to compare the first letters from two strings, so the function gives me TRUE...
  13. Replies
    12
    Views
    3,001

    well thats the problem, i dont know what code to...

    well thats the problem, i dont know what code to write. I understand that main functions calls CreateStructure functions, thats how i would have built it. But i still i dont understand why there must...
  14. Replies
    12
    Views
    3,001

    Ok, getting better but still hard little hard to...

    Ok, getting better but still hard little hard to understand. I simplifyed my code. Now I just have the structure:



    struct Book

    {
    char pIBSN[21];
    char pAutor[21];
    char pTitle[21];
  15. Replies
    12
    Views
    3,001

    wow! i should had said that im a beginner at C...

    wow! i should had said that im a beginner at C programming and i was hoping kinda smaller, smpler code. For now its hard to understand all of this but i try...
    thank you!
  16. Replies
    12
    Views
    3,001

    How to make a chain-structure

    i have a structure:



    struct Book

    {
    char pIBSN[21];
    char pAutor[21];
    char pTitle[21];
  17. Replies
    3
    Views
    1,596

    ok but how do i finish the function? void...

    ok but how do i finish the function?



    void displayBook(struct Book *pBook);

    {
    // what code i type here?
    }
  18. Replies
    3
    Views
    1,596

    how to display initialized structure?

    I have a structure:




    struct Book

    {
    char *pISBN;
Results 1 to 18 of 18