Code:
#define MAX_NUMBER_OF_GRADES 16

float grade[MAX_NUMBER_OF_GRADES];
This works with all C Compilers.

The other one does NOT work with all C Compilers.

As already stated in this thread it works if you have variable length arrays.

Tim S.