Hi,
Are 2D arrays positioned in memory the same way as normal arrays?
ex.:
char names[2][5] = {"Dean", "Viky"};
If 'names' is memory location 3000, are the letters necessarily stored like this?
3000 = 'D'
3001 = 'e'
3002 = 'a'
3003 = 'n'
3004 = '\0'
3005 = 'V'
3006 = 'i'
3007 = 'k'
3008 = 'y'
3009 = '\0'
thanks.