hello let's say i type some spanish in a text file, how would i read them in as wchar_t type from a text file?
yeah, i have no problem reading a regular text file, the problem is when i start typin in different languages, i can't seem to store them
You probably want to store the text in utf-16 or utf-8. Normally you'd write a byte order mark which most editors check for to see what encoding the file is in, then you write the encoded characters (wikipedia has information about both).