Search:

Type: Posts; User: Three

Search: Search took 0.01 seconds.

  1. Replies
    18
    Views
    2,760

    Note well taken.

    Note well taken.
  2. Replies
    18
    Views
    2,760

    I think when you copy and paste that you don't...

    I think when you copy and paste that you don't learn one single thing.
  3. Replies
    18
    Views
    2,760

    Mabe this will help to geter done. void...

    Mabe this will help to geter done.


    void change(float *total)
    {
    int quarters, dimes, nickels, pennies;
    int amt = (int) *total;
    quarters = amt / quarter;
    amt -= quarters * quarter;...
  4. Replies
    18
    Views
    2,760

    truncf() is C99. Could this be the problem.

    truncf() is C99. Could this be the problem.
  5. Replies
    24
    Views
    3,093

    This is obviously pointless.

    This is obviously pointless.
  6. Replies
    24
    Views
    3,093

    What is C&V ?

    What is C&V ?
  7. Replies
    24
    Views
    3,093

    it is not the standard. define or declare it does...

    it is not the standard. define or declare it does not matter.
  8. Replies
    24
    Views
    3,093

    sounds like the old buffer bull..............

    sounds like the old buffer bull...........
    http://faq.cprogramming.com/cgi-bin/smartfaq.cgi?answer=1044873249&id=1043284392
  9. Replies
    24
    Views
    3,093

    you are declaring the function returncode inside...

    you are declaring the function returncode inside main. you cannot declare a function inside another function at all.
  10. Replies
    2
    Views
    1,165

    Thanks

    Thanks
  11. Replies
    2
    Views
    1,165

    prefix/postfix ++ & -- operators

    Just wondering how the compiler knows the correct operator method to call.



    #include <iostream>

    class COUNTER {
    public:
    COUNTER();
    ~COUNTER();
Results 1 to 11 of 11