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 | 31 |
Tags
- angular button
- egov spring ajax 사용 예시
- formgroup
- ApexChart
- mysql if
- ajax 사용 예시
- 모달
- angular route
- 앵귤러 모달
- Angular Router
- scroll
- Oracle LISTAGG 사용 예시
- modal
- summary
- 스크롤 이벤트 감지
- 호버
- flex-1
- prisma
- Router
- 옵저버블
- 셀렉트박스 커스텀
- 검색
- angular animation
- Ionic modal
- 아이오닉 스크롤 이벤트
- 스크롤 이벤트
- TAILWIND
- route
- 앵귤러 애니메이션
- angular modal
Archives
- Today
- Total
목록C언어 포인터 (3)
깜놀하는 해므찌로
C언어 포인터 변수 활용 예시
#include int main(void){ int x = 10; int *p; *p = &x; printf("x : %d\n", x); *p = 20; printf("x : %d\n", x); return 0; }
IT
2023. 5. 1. 01:46
C언어 포인터 변수 기본 구조 설명
#include int main(void){ int x = 7; // x 라는 변수에 7이라는 값이 저장 int *y = &x; // x의 메모리 주소를 y라는 포인터 변수에 저장 /* 중요!!! y : 00AA00BB 주소 출력 *y : 70 주소에 있는 값을 출력 x == *y -> 7 &x == y -> 00AA00BB */ }
IT
2023. 4. 30. 01:42