memset1 [C언어] 내장함수 비교 - memset, bzero C언어의 함수를 정리하는데 man 가이드를 참고했다. 그런데 man 가이드가 컴퓨터 환경별로 달랐다. Mac 터미널과 윈도우에서 띄운 Ubuntu 터미널의 내용이 다른 것을 알게 되었다. 따라서 내용을 복합적으로 종합하며 정리해본다. memset PROTOTYPE #include void *memset(void *b, int c, size_t len); NAME fill a byte string with a byte value (fill memory with a constant byte) DESCRIPTION - The memset() function writes len bytes of value c (converted to an unsigned char) to the string b. RETURN it.. 2020. 10. 6. 이전 1 다음