What will be printed out as a result of the following code's execution?

#include <iostream>

static const char s[][10] = {  
  "foo",
  "bar",  
};

void test(const char s[][10]) {  
  using std::cout;  
  for (int i = 0; i < 2; i++) {
    cout << s[i];
  }
}

int main() {
  test(s);  
}

Следи за CodeGalaxy

Мобильное приложение Beta

Get it on Google Play
Обратная Связь
Cosmo
Зарегистрируйся сейчас
или Подпишись на будущие тесты