libft/ft_memset.c
2023-05-27 19:52:39 +02:00

16 lines
156 B
C

#include <stdio.h>
#include <string.h>
int main ()
{
char str[16] = "houtworm meister";
memset(str+4, 'x' ,4);
puts (str);
return 0;
}