brain dying pls

This commit is contained in:
2023-08-22 13:26:33 +03:00
parent f08b2ca361
commit a36de7eac1
4 changed files with 50 additions and 13 deletions

View File

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