//How i can push PatientDocumentation (struct) in array called docs that is present in another struct called Patient???

struct PatientDocumentation{ //want to push this
string docName;
string hash ;
}


struct Patient {
uint id;
string name;
uint age;
string sex;
PatientDocumentation[] docs; //here
}

Jul 25, 2022, 5:38 AM
hi
Jul 25, 2022, 5:47 AM

© 2024 Draquery.com All rights reserved.