क्या कुछ संरचना सदस्य के लिए डिफ़ॉल्ट मान सेट करना संभव है? मैंने निम्नलिखित कोशिश की लेकिन, यह सिंटैक्स त्रुटि का कारण होगा:
typedef struct
{
int flag = 3;
} MyStruct;
त्रुटियाँ:
$ gcc -o testIt test.c
test.c:7: error: expected ‘:’, ‘,’, ‘;’, ‘}’ or ‘__attribute__’ before ‘=’ token
test.c: In function ‘main’:
test.c:17: error: ‘struct <anonymous>’ has no member named ‘flag’