在C程序中更改系统区域设置

时间:2013-03-31 11:33:31

标签: c locale

我想写一个C程序,它将改变系统的语言环境。我想为游戏创建一个语言选项。

首先,我想要一个完整的独立C程序。为此,我在Google上进行了一些搜索并尝试编写以下代码,但它没有更改系统区域设置。

#include <stdio.h>
#include <time.h>
#include <locale.h>

int main()
{
    printf ("Locale is: %s\n", setlocale(LC_ALL,NULL));
    printf("Locale is: %s\n",setlocale(LC_ALL,"pa_IN.UTF-8"));
    return 0;
}

0 个答案:

没有答案