摘要:
当sizeof应用于指针数组时。如果应用于数组名称时,将返回整个数组占用的字节总数。当应用于带有适当索引的元素时,将返回该元素占用的字节数量。在VS 2010 中编写以下程序#include "stdafx.h"#include <iostream>using std::cout;using std::cin;using std::endl;int _tmain(int argc, _TCHAR* argv[]){ char *pstr[]={"test1","test2","test3"}; /*in 阅读全文