[C Library] memcpy 사용법!
memcpy는 메모리 영역을 복사하는 함수입니다. 함수명 memcpy 헤더 string.h 형태 void *memcpy( void *new, const void *old, size_t count ) 인자 new: 복사 당할 새 버퍼 old: 복사할 버퍼 count:복사할 문자수 ( old의 문자수 : byte 단위 ) 반환 new의 포인터를 반환, 실패시 NULL 1234567891011121314151617181920212223#include #include int main(){ int dataOne[] = { 1, 2, 3, 4, 5 }; int dataTwo[] = { 6, 7, 8, 9, 10 }; printf("dataTwo 처음 데이터: "); for (int i = 0; i