2d array initialize

how to make 2d array like this
arr[int][char]

Hey if you want a character arrray of size m * n you can do that by char arr[m][n], or say that you want to take n strings as input you can also use string s[n]. If your doubt was something else, please elaborate more.