본문 바로가기

개발공부/C

변수의 영역

Storage duration:

- static storage duration

프로그램이 시작될때 메모리에 자리를 잡고 끝날때까지 있다.

(Note: 'static' keyword indicates the linkage type, not the storage duration)

- automatic storage duration

보통 지역변수를 의미하고 스택에 저장된다.

- allocated storage duration

동적할당과 관련이 있다.

- thread storage duration

멀티쓰레딩

'개발공부 > C' 카테고리의 다른 글

컴파일과 CMake  (0) 2019.10.25
자동변수  (0) 2019.10.17
C언어를 가장 쉽고 직관적으로 이해하는 강의  (0) 2019.10.17
배열을 함수에게 전달해주는 방법  (0) 2019.10.17
printf()함수  (0) 2019.10.15