strlen, strlcpy, strlcat 함수 구현(2021.01.07 업데이트)
틀린 내용이나 지식이 있다면 댓글로 알려주세요! 감사합니다! 💡 strlen에 대하여 환경 c, c++ C에서는 C++에서는 Prototype char* strlen(char* str); str : c 형식 문자열 Return Value 문자열의 길이를 return 한다. strlen 함수의 구현 #include //NULL과 size_t를 쓰기 위한 헤더 size_t ft_strlen(const char *str) { size_t i; i = 0; while (str[i]) i++; return (i); } 💡 strlcpy에 대하여 환경 c, c++ c에서는 c++에서는 Prototype int *strlcpy(const void *dest, const void *src, size_t size); d..
TIL(Today I Learn)/C++
2021. 1. 3. 20:30
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- vscode
- 42서울 합격 후기
- 백준
- 프로그래머스 코딩테스트
- css
- c언어알고리즘
- windows 10 ubuntu
- flexbox
- 프로그래머스 코테
- 42서울 라피신
- C언어 문제
- 마크다운 이미지 업로드
- 알고리즘
- vscode commit vi
- C언어문제
- 프로그래머스 자바
- html
- 42서울 합격
- c언어 함수
- HEXO
- 42seoul
- React
- 자바스크립트
- Git
- JavaScript
- git vi
- JS
- 프로그래머스 카카오
- C언어
- 42서울
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함