I want to use two dimensional array on realview compiler with type A[n][10] where n is an variable of type unsigned char. but it show an error.
my code example is unsigned char n; unsigned char A[n][10]; function { n =5; A[1][0] = 2; A[1] [1] = 4; }