नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
function : only available as an intrinsic function
Remarks
The #pragma function tries to force the compiler to use a conventional call to a function that must be used in intrinsic form. The pragma is ignored.
To avoid this warning, remove the #pragma function.
Example
The following example generates C4167:
// C4167.cpp
// compile with: /W1
#include <malloc.h>
#pragma function(_alloca ) // C4167: _alloca() is intrinsic only
int main(){}