const int kN = 2;

void tmp2()
{
  string str[kN] = {"foo", "bar"};
  for(int i=0; i<kN; i++){
    cout << str[i] << endl;
  } // i

  return;
}


