re: std::wfstream是怎么支持寬字符的? shanon 2005-12-15 18:36
真是豁然開朗,Intel 是倒著存的,哦,明白了,謝謝!!!?。。。。。?!
一個C 的問題? shanon 2005-12-13 16:18
下面程序的在Intel X86系列CPU上的運行結果是什么:
#include <stdio.h>
main()
{ struct {int m; int n;} s = {0x70706168, 0x79}; printf("%s", &s));
}
#include <stdio.h>
main()
{ struct {int m; int n;} s = {0x70706168, 0x79}; printf("%s", &s));
}