I have tried compiling my program test.c i have attached to the post, i get some errors saying expression must have a constant value , could you please check my code and tell me where am i doing the mistake
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Respected sir,
could you tell me,whether is a there any way to compile the program? ,because all the major part of our core functions are declared in the same way,it works very well in the normal eclipse with mingw plug in ,but when it comes to embedded development , no compiler is supporting it.
To compile the program as written requires C99 support, which the TI compiler does not yet support. You must change your source code to use literal constants for the array bounds:
void transpose(double matrix[4][4], double matrix_t[4][4]); int isMatrixEqual(double matrix1[4][4], double matrix2[4][4]);