Embed Notice
HTML Code
Corresponding Notice
- Embed this notice
:p: (p@bae.st)'s status on Friday, 12-Apr-2024 04:40:01 JST:p: @Hyperhidrosis Lotta output ends up line-buffered, you gotta put breaks in once in a while. You can use puts() or fputs() instead of printf if you're not using any formatting, it adds a line break in automatically. Or you could do something like
for(i=0;;i++){printf("whatever%c", i&15 ? ' ' : '\n');}