摘要: 指针指向整数时: 1 #include <iostream> 2 3 int main(void) 4 { 5 using namespace std; 6 int a = 10; 7 int *p = &a; 8 9 cout << "sizeof(p) = " << sizeof(p) << e 阅读全文
posted @ 2016-08-08 09:41 busui 阅读(2127) 评论(0) 推荐(0)