I am using VC++ 6.0 on Windows XP SP2 platform. I am using GUID structure in my code.
typedef struct _GUID { // size is 16
DWORD Data1;
WORD Data2;
WORD Data3;
BYTE Data4[8];
} GUID;
How to initialize this structure to zeros while creating an object? Or when I create an object, what is the default value for the members?