dec to bin

Pages: 12
Another thing - please try to avoid using goto - it is really bad practice. Always use loops instead.

HTH
closed account (18hRX9L8)
Another thing - please try to avoid using goto - it is really bad practice. Always use loops instead.


goto has helped me a create a lot of error messages. I never use goto as a substitute for a loop. That is what loops are for.
Last edited on
@usandfriends

goto has helped me a create a lot of error messages. I never use goto as a substitute for a loop. That is what loops are for.


Well, why did you have goto in your solution? It appears that your goto did implement a loop. The OP didn't have one.

Any way it is not a huge deal, just trying to point out some bad practice, so the OP didn't think it was a good idea.

Hope all is well at your end :)
closed account (18hRX9L8)
I see what you are saying now.
Makes sense, actually it is bad practice to use goto loops as I did ;).

Hehehehe...
Last edited on
Topic archived. No new replies allowed.
Pages: 12