Search:

Type: Posts; User: Harliqueen

Search: Search took 0.01 seconds.

  1. Replies
    33
    Views
    10,693

    yea took out the extra one

    yea took out the extra one
  2. Replies
    33
    Views
    10,693

    ok...what it is saying now is that there is a...

    ok...what it is saying now is that there is a problem with the top line
    (highlighting in red)
  3. Replies
    33
    Views
    10,693

    ok...I changed it to this void...

    ok...I changed it to this


    void printLib(struct lib *l ) {
    int i;
    for(i = 0;i < MAX_LENGTH;i++)
    printf("%s %s", myLib->collection[i]->author, myLib->collection[i]->title);
    }
    }
  4. Replies
    33
    Views
    10,693

    void printLib(struct book *l, int length) ...

    void printLib(struct book *l, int length)

    should that be changed to something like this


    void printLib(struct library *l, int MAX_LENGTH)
  5. Replies
    33
    Views
    10,693

    Oh yea...ok I see what you mean now

    Oh yea...ok I see what you mean now
  6. Replies
    33
    Views
    10,693

    so i basically need to get rid of the int i

    so i basically need to get rid of the int i
  7. Replies
    33
    Views
    10,693

    Ok...well I changed the coding to what was...

    Ok...well I changed the coding to what was suggested and now I have a problem with the



    //Funtion to print list
    void printLib(struct book *l, int length) {
    int i;
    for (i=0; i<length; i++)...
  8. Replies
    33
    Views
    10,693

    yes...for some reason once we started functions...

    yes...for some reason once we started functions
    in my class...I went to hell. It is so confusing for me,
    and I don't even want to do this as a career. I wanted to
    do game design art...but I have...
  9. Replies
    33
    Views
    10,693

    I tried to change the max length...and it crashed...

    I tried to change the max length...and it crashed without printing anything out
  10. Replies
    33
    Views
    10,693

    Ok....so fix the spaces around the %s...I am not...

    Ok....so fix the spaces around the %s...I am not sure exactly how to fix lib function
    I am quite stupid when it comes to programming
  11. Replies
    33
    Views
    10,693

    Mine didn't even get that far my friend is doing...

    Mine didn't even get that far
    my friend is doing the same code...and I think
    his isn't even showing two of the lines
  12. Replies
    33
    Views
    10,693

    thanks

    thanks
  13. Replies
    33
    Views
    10,693

    yep 11 1 TOM_SAWYER TWAIN FICTION 1...

    yep

    11
    1 TOM_SAWYER TWAIN FICTION
    1 Intro_to_C_Programming King Computer_Science
    3 Huckleberry_Finn
    1 Huckleberry_Finn TWAIN FICTION
    1 Guns,Germs,Steel Diamond Anthropology
    1 Java5.0 Cohoon...
  14. Replies
    33
    Views
    10,693

    Basically it is just running that exact code and...

    Basically it is just running that exact code and using a file i made called library.txt as the input in dev c++, it prints off exactly what it is suppose to output...but 5 seconds later in suddenly...
  15. Replies
    33
    Views
    10,693

    C problem - Create a Personal Library

    Hello, I am new to the forums and I just have a quick question.

    For the most part the program does what it needs to (which is print off
    the list of what was added and what was removed based on my...
Results 1 to 15 of 15