Student String: Using Namespace Struct
Student String: Using Namespace Struct
#include <string>
using namespace std;
struct student
{
string firstname;
int yearofbairth;
double score1, score2, score3;
double grade;
int age;
};
student st[100];
int main() {
int size;
system("pause");
return 0;
}
if (st[i].grade>95)
{
cout << st[i].firstname << endl;
}
}
}