For some reasons, I need to write files that have Chinese characters in the filenames(C language). For example:
#include<stdio.h>
#include<stdlib.h>
FILE *fout;
int main(){
fout = fopen("乔布斯.txt", "w");
fprintf(fout, "Jobs");
//Do something...
}
No errors, however, no file was created. I want to know how to solve the problem. Thanks!
OS is windows 8.1, though a Linux solving can be accepted.