If you ever need to output a single newline character (\n
), don't use putchar(10)
, use puts("")
.
↧
Answer by user12205 for Tips for golfing in C
↧
If you ever need to output a single newline character (\n
), don't use putchar(10)
, use puts("")
.