// Demonstration of structs // // Written by: Angela Finlayson // Date: 19/09/2024 // #include struct student { char first_initial; char last_initial; int age; double lab_mark; }; int main(void) { // Declare a variable // of type struct student struct student brianna; // Initialise the members of // your struct variable brianna.first_initial = 'B'; brianna.last_initial = 'K'; brianna.age = 21; brianna.lab_mark = 9.9; // Print out the data // Create another student and read in data from user return 0; }