Hello;
can we give the variable in struct an initial values ?
ex:
struct example{
int id;
float gpa;
string name;
};
can we but this inside the structure :
int id=34440;
the same Q is for the Class ? can we intialize the variable when definr it for the first time ?