Could someone please help me by telling me how to initialize array of structure in C?
The scenario is that I have nested structure definition, and I have an array of 10 such structure. What I want is to initialize each of the element of both parent and the child structure with zero. Code is given below
struct PressureValues
{
float SetPressure;
float ReadPressure;
};
struct CalibrationPoints
{
float SetTemperature;
struct PressureValues PressurePoints[10];
};
extern volatile struct CalibrationPoints code IntakeCalibrationPoints[10];
extern volatile struct CalibrationPoints code DischargeCalibrationPoints[10];
I know the lengthy method of initializing each structure element with zero using loop, but I am looking for a short method of initializing all elements to zero. Or please tell me what is the defualt initialize value of array of structure(containing floats only), is it zero or any random value?