
[library] substr 구현하기
·
프로그래밍/C
📌 매뉴얼 (in subject)더보기Function name do_substr Prototype char *do_substr(char const *s, unsigned int start, size_t len); Parameters s: The string from which to create the substring. start: The start index of the substring in the string ’s’. len: The maximum length of the substring.: s: 잘린 부분 문자열을 생성할 문자열입니다.start: 문자열 's'에 있는 부분 문자열의 시작 인덱스입니다.len: 서브스트링의 최대 길이입니다. Return valu..