标签: c struct
更具体地说,我希望有这样的东西:
struct Image { unsigned width; unsigned height; char data[width*height*4]; }
其中data的大小为Image的每个实例的静态大小。
data
Image
width*height*4