The printf implementation is faulty #1
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The printf instruction does not work properly:
Writing:
printf("Test1")does not flush the buffer.Even more, writing
printf("Test2\n")strips the newline char and does not print the buffer.The stripping of the newline char is not consistent, as this flushes the buffer:
printf("Test%u\n", 3)Current workaround is using
puts("Test4\n)