program error

for( c<0; name.infoequalsIgnoreCase("ecstussy"))
Last edited on
name1 is an array of strings. Declare a size constant
const int name1_size = 20;
and use it
for ( c = 0; c < name1_size; c++)

The other way is you take a vector to store the account names.
Topic archived. No new replies allowed.