Hi,
I defined a huge 2d array in my code in this way:
float dValued[17568][36];
on compiling this warning appears:
warning #2107: [ISO] More than 65535 bytes in 'float [36] [17568,36]'.
Why ?
Thanks.
Your array object is larger than the required minimum for a C99 compiler (hosted environment), so compiling with a different C99 compiler than Pelles C could possibly fail...