How default assignment operator works in struct?
- by skydoor
Suppose I have a structure in C++ containing a name and a number, e.g.
struct person {
char name[20];
int ssn;
};
Suppose I declare two person variables:
person a;
person b;
where a.name = "George", a.ssn = 1, and b.name = "Fred" and b.ssn = 2.
Suppose later in the code
a = b;
printf("%s %d\n",a.name, a.ssn);