Files
printf/tests/char_print.c
2023-08-22 19:07:57 +03:00

16 lines
191 B
C

#include "../main.h"
/**
* main - testing printing of only char
*
* Return: deadth
*/
int main(void)
{
char c = 97;
_printf("cat: %css\noh wait is that...a %%\n", c);
return (0);
}