Name: Anonymous 2012-02-01 8:30
If I have something like
Is something like this OK to do:
In other words, does C make it into one array or is it actually an array of pointers?
char a[50][50];Is something like this OK to do:
memset(a,0,2500);In other words, does C make it into one array or is it actually an array of pointers?