Структуры (записи)

#include <iostream>
using namespace std;

struct BoldLine {
    const int lineWidth = 10;
};

BoldLine boldLine;
int width = boldLine.lineWidth;
//width is 10

cout << "width is " << width;