Search:

Type: Posts; User: CaeZaR

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    774

    Microsoft Visual C++ .NET version 7

    Microsoft Visual C++ .NET version 7
  2. Replies
    3
    Views
    774

    Debugging the Standard Template Library

    I've started using the standard template library recently, but I'm really having difficulty debugging my code. The "watch window" offers very little info on the contents of say vector.

    Am I...
  3. Replies
    1
    Views
    1,141

    Matrix / 2D Array Templated Library

    So, std::vector is just about the best thing I've come across since sliced bread.

    Is there anything along the lines of std:: vector only for 2D arrays / Matrices? I could just go about making a...
  4. Replies
    2
    Views
    1,156

    File IO question

    At the suggestion of some cprogramming experts, I started using filestreams rather than the old style FILE* c code.

    Now I have some problems that I'm having trouble solving. This code opens a...
  5. Replies
    6
    Views
    1,290

    Classes, Subclasses & Dynamic Memory

    Well, maybe the title to this post is a little intimidating, but I don't think the question will be all that difficult to someone who has thought this through before.

    In english: I have a class...
  6. Replies
    4
    Views
    4,491

    Reading text file twice, can it be done once?

    I am reading a text file of two-column numeric data. I do not know the number of rows that the file will contain. Currently, I read the file twice: Once to ascertain the length and the second time...
  7. Replies
    2
    Views
    1,887

    realloc

    Good point, I really should have posted this in c++, but I was hesitant, because I wanted to stick with C file handling rather than c++ file handling.

    I'll move the post to the c++ board.
  8. Replies
    2
    Views
    1,887

    Reading text file twice, can it be done once?

    I am reading a text file of two-column numeric data. I do not know the number of rows that the file will contain. Currently, I read the file twice: Once to ascertain the length and the second time...
  9. Replies
    2
    Views
    2,373

    log(x) - log(y) vs log(x/y)

    Does anyone have an idea on which of these runs faster, or is my compiler "smart" enough to pick the right one for me?



    double x=10.0;
    double y=5.0;

    double z = log(x/y);

    Alternatively,...
Results 1 to 9 of 9