C(21)
-
[instruments.app] Debugging / C / C++ / Program
글 작성 기준 버전 15.2 이 글은 instruments.app 앱으로 간단하게 테스트 프로그램의 Leaks check 및 트러블 슈팅에 대해서 다룬다. instruments.app 을 실행하자. Leaks 외에도 여러가지를 테스트 해볼 수 있다. C에서 주로 사용하게 될것은 Leaks혹은 Allocations 정도. Target 을 내가 뽑아낸 프로그램으로 지정해줘야 한다. choose Target 선택해서 프로그램 선택. (참고 : clang으로 컴파일했다.) 꿀팁 > Command + Shift + G 누르면 경로를 적어서 이동가능 하다. Trouble shooting 1. Failed to gain authorization Failed to gain authorization 에러가 뜨는 경우 아..
2024.03.20 -
[C] const
Const const는 왼쪽에 있는 것을 상수화시킨다. 만약에 없다면 오른쪽에 작용한다. char num = 0; const char * ptr1;// char에 적용(왼쪽에 아무것도 없기 때문) (값 변경 불가능) char * const ptr2;// *에 적용 (포인터 주소 변경 불가능) ptr1 = # ptr2 = #// const ptr2 상수화 (포인터 주소 변경 불가능) 컴파일 에러 *ptr1 = 10;// *ptr1 상수화 (값 변경 불가능) 컴파일 에러 *ptr2 = 20;// 런타임 에러(ptr2 가르키고있는곳 없음)
2022.09.15 -
[C] strjoin / strjoin.c / strjoin in c
Allocates (with malloc(3)) and returns a new string, which is the result of the concatenation of ’s1’ and ’s2’. char*ft_strjoin(char const *s1, char const *s2) { char*result; size_ttotal_length; if (!s1 || !s2) return (NULL); total_length = (ft_strlen(s1) + ft_strlen(s2) + 1); result = (char *)malloc(sizeof(char) * total_length); if (!result) return (NULL); ft_strlcpy(result, s1, total_length); ..
2022.09.14 -
[C] substr / substr.c / substr in c
char*ft_substr(char const *s, unsigned int start, size_t len) { char*result; size_tindex; if (!s) return (NULL); result = (char *)malloc(sizeof(char) * len + 1); if (!result) return (NULL); s += start; index = 0; while (s && len--) { *(result++) = *(s++); index++; } *result = '\0'; result -= index; return (result); }
2022.09.14 -
[C] memset / memset.c / memset in c
void*memset(void *b, int c, size_t len) { unsigned char*temp_b; temp_b = (unsigned char *)b; while (len--) *temp_b++ = (unsigned char)c; return (b); }
2022.07.25