Structures (records)

typedef struct {
    const int lineWidth;
} BoldLine;

BoldLine line = {10};
int width = line.lineWidth;
//width is 10