char insertion poopoo

This commit is contained in:
2023-08-21 12:53:38 +03:00
parent 71d791acdb
commit 56c807a9cd
2 changed files with 21 additions and 0 deletions

15
tests/char_print.c Normal file
View File

@@ -0,0 +1,15 @@
#include "../main.h"
/**
* main - testing printing of only char
*
* Return: deadth
*/
int main(void)
{
char c = 97;
_printf("cat: %c", c);
return (1);
}