?C???,????????????????????????????(Unicode??),????????????????????
?????????:
#include#include int main() { char chinese[4]; // ?????????????????,??????????????'\0' strcpy(chinese, "?"); // ?????????? printf("??:%s\n", chinese); printf("???Unicode??:x x\n", chinese[0], chinese[1]); return 0; }
????:
??:? ???Unicode??:4f60
??????,????????chinese
?????"?",???strcpy
?????????????????printf
??????????Unicode???
??????,???????????,?????????????????,????????????,????????????????\0
?