May 18, 2012 at 3:15am
for( c<0; name.infoequalsIgnoreCase("ecstussy"))
Last edited on May 20, 2012 at 3:07am
May 18, 2012 at 6:29am
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.