hi everyone))
Please tell me - where is the mistake here -
struct address {char* city ; char* street; int housenumb ;};
struct addinf {int age; struct address* address;};
struct student {int number; int kurs; char* name ; struct addinf* addinf;} stud;
stud.number=1;
stud.addinf.address.housenumb =123;
thanks in advance)