Main
an anonymous user
·
C++
·

#include <iostream> using namespace std; int main() { cout<< "Hello world!" <<endl; string students[10] = { "Иванов", "Петров", "Сидоров", "Ахмедов", "Ерошкин", "Выхин", "Андеев", "Вин Дизель", "Картошкин", "Чубайс" }; cout<< students <<endl; // Пытаемся вывести весь массив непосредственно return 0; }
Click on the Run button to get started.
The code/input has changed since you last clicked on Run. Click it
again to see the updated changes.
Comments