Search:

Type: Posts; User: wbpribs

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    4,900

    Thanks, I forgot about the cast.

    Thanks, I forgot about the cast.
  2. Replies
    4
    Views
    4,900

    When you have a variable such as int var =...

    When you have a variable such as


    int var = 1;

    and you pass it to a function


    function(var);
  3. Replies
    7
    Views
    5,368

    Why is that?

    Why is that?
  4. Replies
    7
    Views
    5,368

    How about the conditional operator instead? ...

    How about the conditional operator instead?


    return (i == -3) ? 1: 0;
  5. Replies
    6
    Views
    5,186

    The variable 'step' has the value 0 since that's...

    The variable 'step' has the value 0 since that's what you initially passed to the back function. The condition of the second for loop in the back function is 'i < step' but both 'i' and 'step' equal...
Results 1 to 5 of 5