Код: Выделить всё
class something
{
char flags[26][80];
} a;
std::fill(&a.flags[0][0], &a.flags[0][0] + 26 * 80, 0);
Подробнее здесь: https://stackoverflow.com/questions/394 ... ng-stdfill
Код: Выделить всё
class something
{
char flags[26][80];
} a;
std::fill(&a.flags[0][0], &a.flags[0][0] + 26 * 80, 0);