からキャストバックするにはvoid*
?
int *a[13][12];
void *b
int *c[13][12];
b = (void*) a;
c = (?????) b;
これ
c = (int *[13][12])b;
言うcast specifies array type
これ
c = (int *[][])b;
と言いarray type has incomplete element type
ます。
コンパイラはgcc (Ubuntu/Linaro 4.6.1)