我不是加隆 发表于 2019-9-2 22:55:29

SDK课后作业第二讲测试题2找错误

本帖最后由 我不是加隆 于 2019-9-3 13:04 编辑

#include <stdio.h>
#include <wchar.h>
#include <locale.h>
int main()
{
      wchar_t c = L'中';
      setlocale(LC_ALL, "chs"); // 设置当前环境为简体中文
      wprintf(L"%lc\n", c);
      return 0;
}

程序出现错误:unresolved external symbol _WinMain@16
希望有人可以解惑{:10_303:}

我不是加隆 发表于 2019-9-3 13:03:34

原来是工程选择问题
页: [1]
查看完整版本: SDK课后作业第二讲测试题2找错误