R
Roubles
Hi All,
Quick question; what is the difference between initializing and
clearing a structure like this:
mystruct_t a = {0};
and initializing and clearing it like this:
mystruct_t a;
memset(a, 0, sizeof(mystruct_t));
TIA,
Roubles
Quick question; what is the difference between initializing and
clearing a structure like this:
mystruct_t a = {0};
and initializing and clearing it like this:
mystruct_t a;
memset(a, 0, sizeof(mystruct_t));
TIA,
Roubles