Code Snippets C

#include
#include
int main(void)
{
struct lconv lc;
lc = *localeconv();
printf("Decimal symbol is: %s\n", lc.decimal_point);
return 0;
}