How to create array of nodes in the structure.
I uploaded my sample.
struct timebasedSpecificTimesIntervalNode
{
int hrs;
int min;
int sec;
};
struct timebasedSpecificTimesInterval
{
struct timebasedSpecificTimesIntervalNode* nodes;
int count;
char *cFilePath;
};
How to create array of nodes for this structure timebasedSpecificTimesInterval.
struct timebasedSpecificTimesInterval specificTimes;
How to create array of 3 nodes to this structure.
EDIT
create structure for this values
hrs:5,2,3 min 23,58,4 sec 54,12,2
Thnks
EDIT: used example provided in OP