views:

76

answers:

1

Can anyone Provide a Simple Example to Read and Write in the Unicode File a Unicode Character ?

A: 

In case you're using Windows. Use fgetws http://msdn.microsoft.com/en-us/library/c37dh6kf(VS.71).aspx to read and fputws http://msdn.microsoft.com/en-us/library/t33ya8ky(VS.71).aspx to write.

The example code are in the provided links.

RonaldV