每天一道笔试题-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 *));
}
出处:无。

你可能感兴趣的:(每天一道笔试题-2012年2月24日)