- 컴퓨터/c , c plus plus
c 언어 배열 초기화
스푸라이트
2010. 7. 19. 16:49
int list[30] = {0};
혹은
int list[30][40] = {0};
int list[30][40] = {0,};
등등 의 방법이 있습니다.