Search:

Type: Posts; User: C-Duddley

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    3,869

    Order of Operations

    When evaluating order of operations like a problem x = a + (b - c) / (d - e * f). Do you evaluate left to right or right to left? Thanks for your time guys.

    -Will
  2. Replies
    4
    Views
    1,760

    Use return(); for type void functions. Sometimes...

    Use return(); for type void functions. Sometimes picky compilers make you do that.

    -Will
  3. Replies
    3
    Views
    2,152

    You nailed it!! That's what I suspected, but I...

    You nailed it!! That's what I suspected, but I just wasn't sure. Thanks for clearing that up. I just don't like things to be black boxes, if you know what I mean :).


    -CDudd
  4. Replies
    3
    Views
    2,152

    XOR explanation...

    I have been playing around with XOR and I'm just curious as to how it works. I don't mean the TRUTH Table thing. Here's an example. A and B characters have an ascii value of 65 and 66...
  5. Explanation of what a template is please.

    And please could it be in english ;). I gotta hear it in plain english before I can understand it in geekspeak :).

    -CDuddley
  6. Replies
    1
    Views
    1,414

    Nevermind figured it out :). -CDuddley

    Nevermind figured it out :).

    -CDuddley
  7. Replies
    1
    Views
    1,414

    Searching through strings...

    Is there a way to search through strings to look for a match with a constant string? I'm trying to make a bot. I was thinking chop up the string at every space and see if the string you're...
  8. Replies
    4
    Views
    1,202

    Thanks...

    Thanks a bunch man :)...

    -CDuddley
  9. Replies
    7
    Views
    1,384

    This might help...

    main()
    {

    int x = 10, y = 0;

    y = ++x; // sets x and y to 11

    y = x++; /* sets x = 11 and y = 10 because x is passed to y before it is incremented */

    return 0;
  10. Replies
    4
    Views
    1,202

    Is there a way to...

    If you have an array can you allocate it to a certain amount then if the user fills up the array can you use malloc to adjust the array to add more elements if needed? Thanks for any replies.
    ...
  11. Replies
    19
    Views
    4,135

    Maybe...

    Why not use a different function for the subtraction of the entered date. Say date_substraction(int *, int *, int *);...

    -CDuddley
Results 1 to 11 of 11