Joined
Last Seen
-8 Reputation Points
- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 3
- Posts with Downvotes
- 2
- Downvoting Members
- 2
0 Endorsements
Ranked #107.76K
1 Posted Topic
There are several problems in this code that could explain why it is not behaving as expected: * **The semicolon after the `if` statements is a bug:** ```c if(i<7); go((i-1),0); send_char(' '); ``` The semicolon terminates the `if` statement, so `go()` and `send_char()` execute every time. The same problem exists …
The End.
hen_bruce556