Afficher des informations sur la localisation

Author:


Download

 
#include 
#include 
 
int main(void)
{
  struct lconv lc;
 
  lc = *localeconv();
 
  printf("Symbole décimal: %s", lc.decimal_point);
 
  return 0;
}