Simple like that, is what i want.
On VB, it would be something like (dunno if it really works):
VB Code:
Dim i, j As Integer Dim arr As String i = 5 j = 10 arr = New Array(i, j)
On C, I'm trying to do similar by the following:
But it isn't working! I must be doing something wrong, I'm not used to C pointers / array stuff... It's really confusing. :PCode:int i, j;
char **arr;
char = (char**) malloc(sizeof(char) * i * j);
