#include <iostream>using namespace std;struct BoldLine { const int lineWidth = 10;};BoldLine boldLine;int width = boldLine.lineWidth;//width is 10cout << "width is " << width;