Pelles C forum

C language => Beginner questions => Topic started by: Alessio on December 10, 2007, 01:11:25 PM

Title: warning #2107
Post by: Alessio on December 10, 2007, 01:11:25 PM
Hi,

I defined a huge 2d array in my code in this way:

Code: [Select]
float dValued[17568][36];
on compiling this warning appears:

warning #2107: [ISO] More than 65535 bytes in 'float [36] [17568,36]'.

Why ?

Thanks.
Title: Re: warning #2107
Post by: Pelle on December 10, 2007, 07:28:11 PM
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...