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
}
Last edited on