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