strcmp1 [C언어] 내장함수 비교 - strchr, strrchr / strstr, strnstr / strcmp, strncmp 에 있는 문자열 관련 함수를 정리한다. 레퍼런스는 man 가이드다. strchr와 strrchr 비교 RETURN 항목에서 말하는 'character'는 byte를 의미한다. PROTOTYPE #include char *strchr(const char *s, int c); #include char *strrchr(const char *s, int c); NAME locate character in string DESCRIPTION - The strchr() function locates the first occurrence of c (converted to a char) in the string pointed to by s. - The terminating null character is consider.. 2020. 10. 8. 이전 1 다음