i have declear one structure typedef struct { char name[20]; int age;} INFO
another file and create one structure vasrable str1 in main,
I want to pass the addres for another function linke fun( &str1);
in this function i am read data from a file like

void fun ( INFO * str )
READ (HANDLE, &str,sizeof(str 1));
that is write or not ?
i wnat to print info in main