|
|
От: | Аноним | |
| Дата: | 10.09.02 12:19 | ||
| Оценка: | |||
А>#include <string>
А>#include <iostream>
А>#include <algorithm>
А>using namespace std;
А>void main()
А>{
А> const char *array = "Hello! World! \n";
А> // копируем array в s
А> string s = string(array);
А> //...
А>}
А>std::string s = array;