Hi all,
Quite a basic question for most of you; I am trying to obtain length of a string < char name[MAX_ENTRIES][MAX_NAME_SIZE] > for use in a for loop that will perform isalpha.
for (int j=0; j < &name.length(); j++)
I am getting error 2228: left of '.length' must have class/struct/union type upon compile.
Can anyone please offer me some guidance?
This is a simple win32 console application. See attached code.