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.