नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'identifier': bit field cannot have indirection
Remarks
Bit fields can't be declared as a pointer, reference, or array. For more information, see C++ Bit Fields.
Example
The following example generates C2033:
// C2033.cpp
// compile with: /c
struct S
{
int* ptr : 1; // C2033
int arr[3] : 1; // C2033
};