0
0
This commit is contained in:
Guy Baconniere
2021-08-20 10:02:38 +02:00
parent 5aa02c94b5
commit d30270c485
354 changed files with 0 additions and 0 deletions

15
C_04/tests_C04/ex01.c Normal file
View File

@@ -0,0 +1,15 @@
#include <stdio.h>
#include "../ex01/ft_putstr.c"
int main(void)
{
char b[1];
char *a = "12345678";
b[0] = 0;
printf("\nTest\nexpected : %s | result : \n", a);
ft_putstr(a);
printf("\nTest\nexpected : %s | result : \n", b);
ft_putstr(b);
printf("\n");
}