每天一道笔试题-2012年2月24日

问题一:
确定如下程序输出:
#include <stdio.h>

void main()
{
char *words[] = {"W", "WW", "WWang", "WangWang"};
printf("%u\t%u\n", sizeof(words), sizeof(char *));
printf("words_size = %u\n", sizeof(words) / sizeof(char *));
}
出处:无。
posted @ 2012-02-28 13:53  我的IT技术  阅读(102)  评论(0编辑  收藏  举报