codice:
int main()

{

char *arr[10][2];

*arr[1][1] = 'a';
*arr[1][2] = 'b';

printf("%c",*arr[1][2]);
system("pause");
return 0;

}