Search:

Type: Posts; User: wgdb198

Search: Search took 0.01 seconds.

  1. Thread: expontants??

    by wgdb198
    Replies
    3
    Views
    1,123

    how about double exp (double) from the ...

    how about
    double exp (double) from the <math.h> library
    that is e to the power of x .
    Other functions at
    http://www.opengroup.org/onlinepubs/007908799/xsh/math.h.html
  2. Replies
    6
    Views
    1,626

    You are probably not going to like it but I have...

    You are probably not going to like it but I have given up on trying to stop openGL hogging all the CPU time. Its complicated but because I also need to accept user input I have just inserted...
  3. Replies
    8
    Views
    3,677

    Sorry again (I apologised in the thread I started...

    Sorry again (I apologised in the thread I started as well)
  4. Replies
    6
    Views
    1,626

    will do thanks

    will do
    thanks
  5. Replies
    6
    Views
    1,626

    thank you

    thank you
  6. Replies
    6
    Views
    1,626

    PeekMessage Windows XP

    2 Q's in one : What is the best ( also what is the easiest ) way to stop openGL hogging all the CPU time yet still keeping
    millisecond control over what is happening.

    e.g.
    update screen and...
  7. Replies
    13
    Views
    1,349

    Struct makes more sense. A struct holds data...

    Struct makes more sense.
    A struct holds data only
    classes hold data AND functions
  8. Replies
    8
    Views
    3,677

    Its cool. I`ve only been doing C++ for a week and...

    Its cool. I`ve only been doing C++ for a week and I shouldn`t be giving away too much. I`ll get the balance right one day.
    I`m more used to Java.
    I was going to ask a question but looking at the...
  9. Replies
    24
    Views
    3,885

    Can't work it out - the main problem is the...

    Can't work it out - the main problem is the length of your function
    Each function should have one logical purpose
    so instead have something like:



    void startSelection1()
    {
    char ch =...
  10. Replies
    8
    Views
    3,677

    I think it needs changing the add function so...

    I think it needs changing the add function so that the pointers point the other way in the list and keeping hold of the first item in the list
  11. Replies
    24
    Views
    3,885

    Need to see the function void helga_magicshop()...

    Need to see the function void helga_magicshop()
    to see what the syntax error is

    Answer to edit - no if pass variable as a parameter to functions.
  12. Replies
    24
    Views
    1,924

    I use bignums comes with free lcc compiler

    I use bignums
    comes with free lcc compiler
  13. Replies
    14
    Views
    1,588

    I agree

    I agree but the trouble seemed to be less about what functions to use but how while loops and if statements affect program flow
  14. Replies
    14
    Views
    1,588

    #include #include using...

    #include <iostream>
    #include <cctype>
    using namespace std;

    int main (void)
    {
    bool done = false;
    char ch;
    int asc;
Results 1 to 14 of 14