I created a record type program that keeps the record of multiple patients in seperate files, these records include full name and other details. It goes something like this
Now there will be multiple record files for each patient, I need to group them together into one large single record, how do i group the fullname,otherdetails etc. into one pointer and do this for every file? i tried adding them together ex. char record1=(*fullname)+(*otherdetails)
but it did not work, the program says it cannot change from char* to char[40] etc.