Error: memory prevented reading of target memory at 0x00000000.
what does this error means? been trying to figure this out for the past few days, but cant make this error go away.
i have a struct of complex number:
typedef struct {
float re;
float im;
} iq_complex_float;
then another struct that point to iq_complex_float:
typedef struct {
iq_complex_float *data;
int size;
} array_iq_complex_float;
but when i declare array_iq_complex_float in my main, it's giving the above error.
where should i start debugging this?