A C++ question "initializer fails to determine size of 'data'."# Programming - 葵花宝典
s*l
1 楼
gfloat* data;
gfloat data[]=new gfloat[n];
The above gives error "initializer fails to determine size of 'data'.
How should I fix it? Thank you.
gfloat data[]=new gfloat[n];
The above gives error "initializer fails to determine size of 'data'.
How should I fix it? Thank you.