betty passes, write + 1, NO RETURN _PRTINF PLS

This commit is contained in:
2023-08-21 12:19:24 +03:00
parent 6c756ea867
commit 960ef386ee
3 changed files with 9 additions and 17 deletions

View File

@@ -10,10 +10,11 @@
int main(void)
{
char *test_0 = "Hej";
char *test_1 = "pls";
/*
* Brain ded to think bout test cond
*/
_printf("%s \n", test_0);
return (_printf("hey, %s", test_0));
_printf("%s\n%s\n", test_0, test_1);
return (0);
}