10 Array, Pointer
10-01. 배열과 메모리 자료형의 크기만큼 메모리가 계산된다! 10-02. 배열의 기본적인 사용방법 #define MONTHS 12 //symbolic constant, macro int main() { int high[MONTHS] = {2,5,11,18,23,27,29,30,26,20,12,4}; // Address printf("%p %p \n", high, &high[0]); for (int i =0; i < MONTHS; ++i) printf("%lld \n", (long long)&high[i]); // 10진수로 출력하여 4씩 증가하는지 확인(int이므로) printf("\n"); ///* complier doesn't check whether indices are valid!! *..
더보기