setlocale - set the current locale

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

int
main( void )
{
        printf( "%s\n", setlocale( LC_ALL, "" ) );
        exit(0);
}

  

posted @ 2012-03-11 20:41  lxgeek  阅读(201)  评论(0编辑  收藏  举报