- #include<iostream>
- using namespace std;
- struct student;
- {
- string name;
- int age;
- char gender;
- float weight;
- }
- int main()
- {
- int student temari[10];
- cout<<"Ente the info about a student "<<endl;
- for(int i=0;i<10;i++)
- {
- cin>>temari[i].name;
- cin>>temari[i].age;
- cin>>temari[i].gender;
- cin>>temari[i].weight;
- }
- }
