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);
}
#include <locale.h>
#include <stdlib.h>
#include <stdio.h>
int
main( void )
{
printf( "%s\n", setlocale( LC_ALL, "" ) );
exit(0);
}