14
Ngăn xếp tăng lên hay hướng xuống?
Tôi có đoạn mã này trong c: int q = 10; int s = 5; int a[3]; printf("Address of a: %d\n", (int)a); printf("Address of a[1]: %d\n", (int)&a[1]); printf("Address of a[2]: %d\n", (int)&a[2]); printf("Address of q: %d\n", (int)&q); printf("Address of s: %d\n", (int)&s); Đầu ra là: Address of a: 2293584 Address …