Oct 18, 2013 at 11:44pm
Does anyone know how to print strings from array with a letter starting with n?
// Filter: only print those strings from the array that start with letter 'n'
bool startsWith_n( string word )
{
return false; // just to make it compile. you change as needed
}
Oct 18, 2013 at 11:48pm
Last edited on Oct 18, 2013 at 11:50pm