News

I've got a problem with some C we are working on (embedded systems), right now we have a huge 2D array that works fine, it looks like this t_ourStructType *Array; Array = ...
I know that you can initialize an array in C++:<BR>int b [] = { 16, 2, 77, 40, 12071 };<BR><BR>But is it possible to do the same with a matrix?<BR>int b [][] = { 1, 2 ...