摘要: 1.32位环境下#include #include #include using namespace std;int main(){ char t1[] = "ab\0cd"; char t2[6] = "abcd\0"; int t3[4] = {'0', 0, '\0'}; printf("%d\n",sizeof(t1)); printf("%d\n",sizeof(t2)); printf("%d\n",sizeof(t3)); printf(" 阅读全文
posted @ 2013-09-20 19:19 haoaina521 阅读(2553) 评论(0) 推荐(2) 编辑