Search:

Type: Posts; User: void_t

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    8,601

    Exactly what I'm thinking. If digit is going to...

    Exactly what I'm thinking. If digit is going to be the output on the 7 segment led why are you setting it equal to the loop iteration rather than the Speed?
  2. Replies
    7
    Views
    6,658

    The tries part goes inside the nested do-while...

    The tries part goes inside the nested do-while loop (the one where you keep guessing).
  3. Replies
    4
    Views
    1,509

    This is why you should probably use different...

    This is why you should probably use different variable names. I'm just guessing at your problem but I'm pretty sure its this.

    top and bottom are both single pointers in main. So you pass the...
  4. Replies
    10
    Views
    3,649

    First of all, computing a number mod A (num % A)...

    First of all, computing a number mod A (num % A) gives you a number from 0 to A-1, not 0 to A. Also, in C, mod doesn't work correctly with negative numbers but there's an easy fix and its not...
Results 1 to 4 of 4