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;
}

Leave a Reply

Your email address will not be published. Required fields are marked *