![]() |
array of structures
Dear all,
can someone tell me how to INITIALIZE array of structures? i mean like this Code:
so how can i initialize all appo[0] through appo[23] with the SAME initialization? thanks. |
Re: array of structures
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)); |
| All times are GMT +5.5. The time now is 01:22. |