Hi, I am unable to understand why is the output for this shows me the address of the stored array.

int main()
{
size_t k= 0 ;
char t[3][100] = { "hi", "di", "fi" } ;
char s[3][100] ;
for...