refactored append and char test

This commit is contained in:
LinlyBoi
2023-08-21 14:28:36 +03:00
parent f316833e4c
commit 7fda3ce821
5 changed files with 35 additions and 7 deletions

View File

@@ -10,6 +10,6 @@ int main(void)
{
char c = 'c';
_printf("cat: %c", c);
_printf("%c\n", c);
return (0);
}