Latest web development tutorials

C-Bibliotheksfunktionen - localeconv ()

C Standard-Bibliothek - <locale.h> C Standard - Bibliothek - <locale.h>

Beschreibung

C - Bibliotheksfunktionenstruct lconv * localeconv (void) gesetzt oder die lokalen Informationen lesen.Es gibt ein Objekt vom Typlconv Struktur.

Erklärung

Hier ist () Anweisung localeconv Funktion.

struct lconv *localeconv(void)

Parameter

  • NA

Rückgabewert

Diese Funktion gibt einen Zeiger auf einen Zeigerstruct lconv aktuellen Bereich, es ist wie folgt strukturiert:

typedef struct {
   char *decimal_point;
   char *thousands_sep;
   char *grouping;	
   char *int_curr_symbol;
   char *currency_symbol;
   char *mon_decimal_point;
   char *mon_thousands_sep;
   char *mon_grouping;
   char *positive_sign;
   char *negative_sign;
   char int_frac_digits;
   char frac_digits;
   char p_cs_precedes;
   char p_sep_by_space;
   char n_cs_precedes;
   char n_sep_by_space;
   char p_sign_posn;
   char n_sign_posn;
} lconv

Beispiele

Das folgende Beispiel zeigt die localeconv () Funktion verwendet wird.

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

int main ()
{
   struct lconv * lc;

   setlocale(LC_MONETARY, "it_IT");
   lc = localeconv();
   printf("Local Currency Symbol: %s\n",lc->currency_symbol);
   printf("International Currency Symbol: %s\n",lc->int_curr_symbol);

   setlocale(LC_MONETARY, "en_US");
   lc = localeconv();
   printf("Local Currency Symbol: %s\n",lc->currency_symbol);
   printf("International Currency Symbol: %s\n",lc->int_curr_symbol);

   setlocale(LC_MONETARY, "en_GB");
   lc = localeconv();
   printf ("Local Currency Symbol: %s\n",lc->currency_symbol);
   printf ("International Currency Symbol: %s\n",lc->int_curr_symbol);

   printf("Decimal Point = %s\n", lc->decimal_point);
   
   return 0;
}

Lassen Sie uns zusammenzustellen und um das obige Programm ausführen, die in der folgenden führen:

Local Currency Symbol: EUR
International Currency Symbol: EUR
Local Currency Symbol: $
International Currency Symbol: USD
Local Currency Symbol: £
International Currency Symbol: GBP
Decimal Point = .

C Standard-Bibliothek - <locale.h> C Standard - Bibliothek - <locale.h>