[C++] GCC 컴파일러의 배열 초기화

Introduction

int형 배열은 0 이나 memset을 이용한 -1 혹은 [0]만 특정 수로 할당하는 방법밖에 제공하지 않는다. GCC 컴파일러는 다양한 형태의 초기화 루틴을 제공한다.

1
2
3
int main(void) {
int DP[100] = {[0 ... 99] = 1};
}
Author: Song Hayoung
Link: https://songhayoung.github.io/2020/07/21/Languages/Cplusplus/Intermediate-gcc/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.