The illustration shows the following code segment: "StructureVariableName.MemberVariableName" with the "dot" between "StructureVariableName" and "MemberVariableName" annotated as "Dot Operator."
"struct StudentRecord
{
int studentNumber;
char grade;
};
int main()
{
StudentRecord yourRecord;
yourRecord.studentNumber = 2001;
yourRecord.grade = 'A';"