libft/ft_memcpy.c

17 lines
177 B
C
Raw Normal View History

2023-05-27 19:52:39 +02:00
#include <stdio.h>
#include <string.h>
int main(void)
{
char s[] = "abcdefegsdbx";
char d[14];
memcpy(d, s, sizeof(char) * 14);
printf("d: %s\n, d");
return 0;
}