#include using namespace std; struct student { string name; int age; char gender; float weight; }; int main() { student temari; cout<<"Ente the info about a student "<>temari.name; cin>>temari.age; cin>>temari.gender; cin>>temari.weight; cout<