“wektor do string CPP” Kod odpowiedzi

wektor do ciągu c

std::vector<char> input({ 'a', 'b', 'c' });
std::string s(input.begin(), input.end());
Obnoxious Oystercatcher

wektor do string CPP

#include <vector>

std::string array_to_string(const std::vector<std::string>& string_array)
{
    std::string ret_string;
    for (const std::string& s : string_array) ret_string.append(s);
    return ret_string;
}
Motronky

Odpowiedzi podobne do “wektor do string CPP”

Pytania podobne do “wektor do string CPP”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu