일단 해보자
github: @syk25
메모리에서 다른 메모리도 데이터를 복사하려면 for문을 이용한 방식과 memcpy를 이용한 방식이 있다. memcpy는 도착지, 출발지, 복사하려는 메모리의 크기가 필요하다.
char *destination; char *source = "Hello"; memcpy(destination, source, Min(sizeof(destination), sizeof(source)));
도착지와 출발지는 포인터로 표현한다.