how can I find the size of determined members of an array. For example, I declared my array with this:
string myStrArray[200] = {
"My first string",
"My second string",
"My last string"
}
In this code, there are 197 unused elements (or I understand that so). I want to find this array's certain elements (3 elements) by a code such as sizeof(). How can I do that?