Files
printf/tests/char_print.c
2023-12-19 15:31:49 +02: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);
}