C语言库localeconv()函数

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

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/265189.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论