میتونین از std::string
استفاده کنین که مثل یک آرایه پویا از کاراکتره که سایزش مشخصه و همچنین قابل تغییر هم هست.
بطور مثال کد زیر رو در نظر بگیرین که به این صورت تعریف شده و میشه به عناصرش هم دسترسی داشت:
//string is like a dynamic array of characters
std::string input;
//get a whole line of input from stdin and store it
std::getline (std::cin, input);
//you can manipulate it like an array, among other things
input [0] = 'i'; //now "iello there"