🔹 예제 (C)

int globalVar = 10;  // Data 영역
static int staticVar = 20; // Data 영역

int main() {
    return 0;
}

globalVarstaticVar데이터 영역에 저장됨.