नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'arg' : argument is missing closing ')' on OpenMP 'directive' directive
Remarks
An OpenMP directive that takes an argument did not have a closing parenthesis.
Example
The following example generates C3008:
// C3008.c
// compile with: /openmp
int main()
{
int x, y, z;
#pragma omp parallel shared(x // C3008
// Try the following line instead:
#pragma omp parallel shared(x)
{
}
}