Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Selenium
- dataframe
- Stack
- String Method
- 코딩테스트
- 정보처리기사 c언어
- 자료구조
- MySQL
- 노마드코딩
- 데이터시각화
- queue
- openCV
- 프로그래머스
- python
- Matplotlib
- Join
- pandas
- NumPy
- 알고리즘 스터디
- 선그래프
- 가상환경
- 백준
- type hint
- javascript
- 알고리즘
- 알고리즘스터디
- 파이썬
- aws jupyter notebook
- Algorithm
- programmers
Archives
- Today
- Total
목록c언어 배열포인터 (1)
조금씩 꾸준히 완성을 향해
[C 언어] 배열 포인터
배열 포인터 ▶example 1 int (*in)[2]; //배열포인터 생성: (논리적으로) 배열을 2개씩 자름 int num[3] = {1,2,3}; in = num; printf("%d\n", in); //100(주소값이 100이라고 가정) printf("%d\n", num); //100 printf("%d\n", *in); //100 printf("%d\n", **in); //1 printf("%d\n", *(*in+1)); //2 printf("%d\n", *(*in+2)); //3 printf("%d\n", *in[1]); //3 ▶example 2 int (*in)[4]; //배열포인터 생성: (논리적으로) 배열을 4개씩 자름 int num[3][3] = {1,2,3,4,5,6,7,8,9}; ..
기타 언어/C 언어
2023. 3. 22. 16:25