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
- 자료구조
- Algorithm
- Stack
- 가상환경
- dataframe
- python
- 파이썬
- Matplotlib
- programmers
- queue
- Selenium
- 알고리즘 스터디
- 데이터시각화
- MySQL
- 코딩테스트
- 노마드코딩
- String Method
- 알고리즘
- Join
- 백준
- pandas
- aws jupyter notebook
- type hint
- 알고리즘스터디
- NumPy
- 정보처리기사 c언어
- openCV
- javascript
- 선그래프
- 프로그래머스
Archives
- Today
- Total
목록지역변수 (1)
조금씩 꾸준히 완성을 향해
[C 언어] 정적(STATIC) 변수
정적(static) 변수 - 단 한번만 초기화하고, 그 이후에는 전역변수처럼 프로그램이 종료될 때까지 메모리 공간에 존재하는 변수 - 초기값이 지정지 안되면, 자동으로 0이 대입 지역(local) 변수 vs 정적(static) 변수 사용 ▶ local 변수 #include void test(){ int a=10; a++; printf("%d", a); } int main() { test(); test(); } // 1111 ▶ static 변수 #include void test(){ static int a=10; a++; printf("%d", a); } int main() { test(); test(); } // 1112 #include void funCount(); int main() { int nu..
기타 언어/C 언어
2023. 3. 29. 13:46