Search:

Type: Posts; User: Tox|k

Search: Search took 0.01 seconds.

  1. Replies
    44
    Views
    8,072

    Thanks for the advice guys. One addendum...

    Thanks for the advice guys.

    One addendum question here though.
    Is it better to name arrays as plural or singular? I remember being told that singular is more proper, but forgot.

    ie.
    int...
  2. Replies
    44
    Views
    8,072

    naming conventions?

    I've been trying to get some good naming conventions going for when I use C, but so far I can't find one that I'm truly comfortable with.

    The differences in the two naming conventions I use so far...
  3. Replies
    4
    Views
    2,080

    const function parameters

    I have a few questions about const function paramaters ie.


    void constfunc(const int *i) {}
    //as opposed to
    void func(int *i) {}


    Is there any benefit to using them, either than maybe...
  4. Replies
    10
    Views
    2,767

    Thanks for all the info. Anyone know of an...

    Thanks for all the info.

    Anyone know of an easy way to view the ASM that's generated for a function? I haven't used ASM much, so I don't know the best tools and stuff for it. I don't suppose...
  5. Replies
    10
    Views
    2,767

    Thanks matsp, I did some benchmarking, and, in...

    Thanks matsp,

    I did some benchmarking, and, in VS2005 there was no overhead, so, I'm guessing it just inlined the code.

    I also tried it with Borland 5 in which case there was significant...
  6. Replies
    10
    Views
    2,767

    function overhead?

    Hey all,

    I'm just wondering about the amount of overhead a function incurs?

    More specifically, I'm writing some 3D related code that makes use of several functions which perform very basic...
Results 1 to 6 of 6