函数名: country
功 能: 返回与国家有关的信息
用 法: #include <dos.h>
struct COUNTRY *country(int countrycode, struct country *country);
程序例:
#include <dos.h>
#include <stdio.h>
#define USA 0
int main(void)
{
struct COUNTRY country_info;
country(USA, &country_info);
printf("The currency symbol for the USA is: %s\n",
country_info.co_curr);
return 0;
}