Say there's a struct
struct refresh {
int endflag;
};
and if I refer to refresh.endflag
in a function yet I haven't given a value for the endflag
, does it get initialized as 0? Thanks in advance.
Say there's a struct
struct refresh {
int endflag;
};
and if I refer to refresh.endflag
in a function yet I haven't given a value for the endflag
, does it get initialized as 0? Thanks in advance.