20
votes
3
votes
C Arrays and unbroken lists
One problem you have is that you compare count with 3 too early. Wait until you see a change in the bitstream. Try a while loop until the bit flips then compare the count.
…
1
vote
C++ Array Shuffle
You declared deck as an array of pointers but you didn't allocate any space for it. If you de-reference it without allocating space you will get a seg-fault.
…
