Search:

Type: Posts; User: ihatejava

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    14,826

    thanks Sebastiani

    thanks Sebastiani
  2. Replies
    2
    Views
    14,826

    need current day, month, year

    hi,

    i need to be able to get the current date but i want to be able to store the day, month and year in separate variables.

    thanks
  3. Replies
    27
    Views
    4,284

    BOOK WANTED: Deitel&Deitel C++

    if you have a copy of Deitel&Deitel's C++ How to Program 4th Ed. that you would like to part with, then i would like to buy it off you if the price is right.

    email me: [email protected]
    ...
  4. Replies
    5
    Views
    1,855

    yes it does. maybe i'll try testing for 0 instead...

    yes it does. maybe i'll try testing for 0 instead of EOF...
  5. Replies
    5
    Views
    1,855

    if (fclose(f1) == EOF || fclose(f2) == EOF ||...

    if (fclose(f1) == EOF || fclose(f2) == EOF || fclose(g1) == EOF || fclose(g2) == EOF)
    {
    printf("Error! Could not close all files.\n");
    return (0);
    }

    renameFailed = rename(file1,...
  6. Replies
    5
    Views
    1,855

    quick fclose question

    what can cause fclose to fail? and another question: why would rename fail?

    thanks
Results 1 to 6 of 6