Joined
Last Seen
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
2 Commented Posts
0 Endorsements
Ranked #107.76K

1 Posted Topic

Member Avatar for Linda1

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 …

Member Avatar for hen_bruce556
-1
79

The End.