commit
This commit is contained in:
26
C_02/tests_C02/ex11.c
Normal file
26
C_02/tests_C02/ex11.c
Normal file
@@ -0,0 +1,26 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ex11.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: tkondrac <tkondrac@student.42lausan> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2021/08/08 15:48:26 by tkondrac #+# #+# */
|
||||
/* Updated: 2021/08/11 16:50:37 by gbaconni ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include <stdio.h>
|
||||
#include "../ex11/ft_putstr_non_printable.c"
|
||||
|
||||
int main(void)
|
||||
{
|
||||
char c[] = "special : | speciaux : ";
|
||||
|
||||
c[10] = '\n';
|
||||
c[25] = 14;
|
||||
c[26] = 127;
|
||||
printf("%s\n ------ \n", c);
|
||||
ft_putstr_non_printable(c);
|
||||
return (0);
|
||||
}
|
||||
Reference in New Issue
Block a user