Hello folks ,
 
Is there any easy at run time to dump very large binary structures at runtime , 
becos we have lots and lots variables inside structures and also  which 
are pointing to pointers to other structures, array of pointers   

 
struct new_struct 
{
 
int a ;
double;
char *str;
...
char re[300];
 
struct xyz   a1[200];
struct *u1[200];
 
struct ab *p;
 
struct new_struct *p1;
 
}
 
like this it goes on lots  and lots of structures inside , some are linked 
lists , some are array of pointers, some are pointing other structures   etc .
 
i need to have simple mechanism to dump the structures and thier values at 
runtime  to view values holding for me .
 
i dont want to use too many printfs
 
it will save a lot of time in debugging and looking the entire structure to 
test the data .
 
 
thanks in advance 
 
Thanks
Naren
 
 
thanks in advance 



_______________________________________________
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc

Reply via email to