Mar 10, 2018 at 7:51pm
char array[500][500];
what was the meaning of that??is this 2D array??how this is works please explain.please .thanks in advance.
Mar 10, 2018 at 8:37pm
That declares:
1. an array of 500 C-style strings (the first [500] in the declaration).
2. each string can be up to 499 characters in length (have to account for the null terminator in each string).
http://ee.hawaii.edu/~tep/EE160/Book/chap9/section2.1.3.html