您好我不知道为什么我无法编译此代码?
#include <iostream>
#include <stdio.h>
using namespace std;
int main()
{
cout << "Hello world!" << endl;
extern "C"
{
__declspec(dllexport) unsigned long NvOptimusEnablement = 0x00000001;
}
return 0;
}
我收到此错误:
C:\ Users \ Axel \ Desktop \ TestPerso \ main.cpp | 9 | error:期望unqualified-id&gt;字符串常量|
我在装有英特尔高清芯片组的PC和带有Windows 10的Nvidia图形卡920M上运行。