This is the mail archive of the gdb@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

how to print struct in GDB


hi,

i hav array of following struct which contains 50 elements. I want to
print only first feild of the struct ie name field in GDB debuggure.


struct node {

char name[17] ;
int age;
char sex;
int location
} SS[50]


after running 50 loops if i m using (gdb) print SS
command it will show the all element and field of the array SS[50]
but how to get first ie name field of array SS[50]
-- 
View this message in context: http://www.nabble.com/how-to-print-struct-in-GDB-tf4370450.html#a12456773
Sent from the Sourceware - gdb list mailing list archive at Nabble.com.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]