Nothing to see here

This commit is contained in:
2023-08-22 23:14:13 +03:00
parent 0f9928b611
commit 2d212866ec
28 changed files with 735 additions and 76 deletions

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: %css\noh wait is that...a %%\n", c);
return (0);
}