I have to print several large structs to print the screen.
I was wondering if thers a tool to do so automaticly
struct A
{
int i;
char * s;
}
A a;
it will print it's contents :
i=0
s="somestring
etc;
Thanx.
Kat.
I was wondering if thers a tool to do so automaticly
struct A
{
int i;
char * s;
}
A a;
it will print it's contents :
i=0
s="somestring
etc;
Thanx.
Kat.
Comment