You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
729 B
26 lines
729 B
/* Prints the system dependent names for the 12 months in the current locale. */ |
|
|
|
#define _XOPEN_SOURCE 500 /* Needed on AIX 3.2.5 */ |
|
|
|
#include <stdio.h> |
|
#include <stdlib.h> |
|
#include <locale.h> |
|
#include <langinfo.h> |
|
|
|
int main () |
|
{ |
|
setlocale(LC_ALL, ""); |
|
printf("%s\n", nl_langinfo(MON_1)); |
|
printf("%s\n", nl_langinfo(MON_2)); |
|
printf("%s\n", nl_langinfo(MON_3)); |
|
printf("%s\n", nl_langinfo(MON_4)); |
|
printf("%s\n", nl_langinfo(MON_5)); |
|
printf("%s\n", nl_langinfo(MON_6)); |
|
printf("%s\n", nl_langinfo(MON_7)); |
|
printf("%s\n", nl_langinfo(MON_8)); |
|
printf("%s\n", nl_langinfo(MON_9)); |
|
printf("%s\n", nl_langinfo(MON_10)); |
|
printf("%s\n", nl_langinfo(MON_11)); |
|
printf("%s\n", nl_langinfo(MON_12)); |
|
exit(0); |
|
}
|
|
|