solartimba said:
I need to read Spanish words from a file and print them to the screen.
Is there a C++ header file that allows foreign words? Is the problem
C or the OS? (I am the only person that will use this program)
There is nothing special that you need to do -- the i/o stream has no concept
of language.
The consideration is on the character type (ASCII 8-bit, UNICODE 16-bit, et
alii). If the input characters are ASCII, the 'default' input/output handlers
will work just fine, however if you are using UNICODE, you will need to use the
wide-character versions.
However, your post isn't entirely clear -- are you inquiring about
foreign-language versions of the libraries themselves? Something like
"is_open()" becomes "es_abierto()" (or whatever the Spanish equivalent is)?