array of structures

Contributor
12Dec2011,20:11   #1
jose_peeterson's Avatar
Dear all,
can someone tell me how to INITIALIZE array of structures? i mean like this
Code:
struct appointments appo[24] = {'\0',0,0};
this only initializes appo[0] others are not initalized properly.

so how can i initialize all appo[0] through appo[23] with the SAME initialization?

thanks.
Mentor
13Dec2011,04:14   #2
xpi0t0s's Avatar
If you just want to initialise the whole lot to zeros the easiest way is to use memset.
Code:
memset(&appo[0],0,24*sizeof(struct appointments));