Files
printf/tests/char_print.c
LinlyBoi bc32277deb yes
2023-08-21 13:41:10 +03:00

16 lines
164 B
C

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