「C言語」setlocale関数でロケールを設定するサンプル

サンプルコード

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

int main(void)
{
    char* tt = setlocale( LC_ALL, NULL );
    puts( tt );

    tt = setlocale( LC_ALL, "" );
    puts( tt);

    return 0;
}

結果:
C
Japanese_Japan.932

C++

Posted by arkgame