M
Martin Gieseking
Hello
I've the following piece of code that compiles fine:
typedef int (*(*T)[3])[4];
T *t = new T[k];
Now I would like to avoid the typedef but don't really know how to do this.
Is it possible at all?
Any help is really appreciated.
Alex
I've the following piece of code that compiles fine:
typedef int (*(*T)[3])[4];
T *t = new T[k];
Now I would like to avoid the typedef but don't really know how to do this.
Is it possible at all?
Any help is really appreciated.
Alex