I am trying to decipher someone's code and I see something that I don't understand. I don't see any references on how structures are applied when members aren't defined in the header or in the beginning of code but are defined later on.. Here is an example of what I am trying to figure out. I noted that Data_t *data; in the header is not defined until we enter the funky function and my compiler errors out on this line. I guess my question would be -- is this a valid way to input data into structures?
Much thanks!
#include <stdio.h>
typedef struct config{
int a;
int b;
int c;
Data_t *data;
} config_t;
int funky(config_t *config);
int main( void )
{
printf("In main()\n");
config_t config;
funky(&config);
printf("a = %d\n", config.a); //accessing config's a member
return 0;
}
int funky(config_t *config)
{
printf("In funky()\n");
Data_t *dataa = config->data;
for(i=0;i<5;i++){
dataa[i].mem1=i;
dataa[i].mem2=4+i;
}
//Set values
config->a = 1;
printf("a = %d\n", config->a); //pointer to config's a member
return 0;
}