Search:

Type: Posts; User: Matticus

Search: Search took 0.06 seconds.

  1. Replies
    55
    Views
    12,416

    What compiler/OS are you using? Perhaps try...

    What compiler/OS are you using?
    Perhaps try adding this line directly above "#include <math.h>"


    #define _USE_MATH_DEFINES
  2. Replies
    55
    Views
    12,416

    That's a good start. Just a word of caution -...

    That's a good start. Just a word of caution - those new to programming tend to start writing all of their code at once, and hit a wall of warnings/errors when they're finally ready to test it. I...
  3. Replies
    55
    Views
    12,416

    Then simply write your own math functions instead...

    Then simply write your own math functions instead of using math.h. It's common, during the learning process, to write functions that mimic standard functions, in order to gain a better understanding...
  4. Replies
    55
    Views
    12,416

    std10093 responded to that well. However, it...

    std10093 responded to that well.

    However, it seems like file I/O might be more difficult than you're ready to handle. Just to note: it could take several dozens of programs worth of experience...
  5. Replies
    55
    Views
    12,416

    How about a "phone book" application? Allow...

    How about a "phone book" application? Allow users to enter, delete, or sort the names/numbers (menu), and each selection can be written in its own function. "if" statements and loops would be...
Results 1 to 5 of 5