नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'type': sizeof cannot be applied to a type that contains 'auto'
Remarks
The sizeof operator cannot be applied to the indicated type because it contains the auto specifier.
Example
The following example yields C3540.
// C3540.cpp
// Compile with /Zc:auto
int main() {
auto x = 123;
sizeof(x); // OK
sizeof(auto); // C3540
return 0;
}
See also
auto Keyword
/Zc:auto (Deduce Variable Type)
sizeof Operator