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
- GET방식
- Break
- 톰캣
- 요구사항정의서
- 다형성 #부모타입 #자식타입
- 화면정의서
- 김영한
- xml
- sendRedirect
- https://www.inflearn.com/course/lecture?courseslug=%ea%b9%80%ec%98%81%ed%95%9c%ec%9d%98-%ec%8b%a4%ec%a0%84-%ec%9e%90%eb%b0%94-%ea%b8%b0%eb%b3%b8%ed%8e%b8&unitid=194690
- https://www.inflearn.com/course/lecture?courseslug=%ea%b9%80%ec%98%81%ed%95%9c%ec%9d%98-%ec%8b%a4%ec%a0%84-%ec%9e%90%eb%b0%94-%ea%b8%b0%eb%b3%b8%ed%8e%b8&unitid=194709&category=questiondetail&tab=community&q=1314387
- webserver #WAS #ServerApp
- CONTINUE
- 한글깨짐
- JSON형식의 response
- Dispatcher
- Request
- WAS
- Spring MVC
- Forwarding
- 피그마
- POST방식
- https://www.inflearn.com/course/lecture?courseslug=%ea%b9%80%ec%98%81%ed%95%9c%ec%9d%98-%ec%8b%a4%ec%a0%84-%ec%9e%90%eb%b0%94-%ea%b8%b0%eb%b3%b8%ed%8e%b8&unitid=194711
- Servlet
- 매핑 #
- while문
Archives
- Today
- Total
Step it up now
c언어 포인터 본문
- 포인터
메모리의 위치(주소값)를 표현한 기호
- int *a
a는 포인트 변수, 주소값을 가지고 있음
- *a=10
a의 값이 10 (주소값 아님)
- 포인터 배열
포인터로 이루어진 배열
배열에는 주소값이 들어간다