I have encountered this piece of code:
struct test                   
{                                        
 uint32       num_fields;            
 char array_field [];               
}; 
How can I understand array_field? Is this a gcc extension for the C language?
 
     
     
     
     
    