Search:

Type: Posts; User: jamie

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    960

    I don't know how much structs would help with...

    I don't know how much structs would help with sorting. I think it would be the same as with an array. But I agree with Stone_Coder in that you should just wait and live with them for now. Once you...
  2. Replies
    1
    Views
    4,113

    text input in graphics mode

    Hi. I'm currently working on a program where I need to input text in graphics mode. My problem is that I can't position the cursor to input the text in the right spot. I've tried gotoxy () and...
  3. Replies
    1
    Views
    2,622

    reading a float from file

    I'm having a problem reading float data type from file. The file is structured so that sets of float values would be separated by -99. (ie. 5.43, 6.78, 4.35, -99, 4.32, etc...). The -99 would flag...
  4. Replies
    3
    Views
    1,055

    This helped alot. Thank you sooo much. I was...

    This helped alot. Thank you sooo much. I was trying to save the entire node into the file, without really even thinking about memory allocation, etc... Thanks again for the help.
  5. Replies
    3
    Views
    1,055

    need help with file I/O and double linked-list

    I'm trying to set up a double linked-list, that is a linked-list within a linked-list. the structure looks like this:




    struct Dat
    {
    int acc;
    int spd;
    Dat *nextdat;
Results 1 to 5 of 5