Struct Student

{

char Name[20]; // Имя

char Address[30]; // Адрес

Int Age; // Возраст

Double Rating; // Успеваемость

} BestStudent;

Int main()

{

BestStudent = {"ИВАНОВА", "ПР. ЛЕНИНА 9-А", 17, 10.57};

// Вывод на печать содержимого полей экземпляра структуры

cout << " СТУДЕНТ Ф_ТА ЭИ \n";

cout << "\n ИМЯ:\t" << BestStudent.Name

<< "\n Адрес:\t" << BestStudent.Address

<< "\n Возраст:\t" << BestStudent.Age

<< "\n Успеваемость:\t" << BestStudent.Rating << endl;

return 0;

}