码迷,mamicode.com
首页 > 其他好文 > 详细

指针与地址

时间:2015-11-04 21:30:31      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:

#include <iostream>
using namespace std;
int main() {
    char s1[] = "Hello World";      //字母10位,空格1位,结尾‘\0‘占一位
    char *s2 = "Hello World";      //一个指针占4位
    cout << "size of s1: " << sizeof(s1) << endl;       //12
    cout << "size of *s1: " << sizeof(*s1) << endl;    //*s1=‘H‘,长度为1
    cout << "size of &s1: " << sizeof(&s1) << endl;    //4
    cout << "size of s2: " << sizeof(s2) << endl;      //4
    cout << "size of *s2: " << sizeof(*s2) << endl;     //1
    cout << "size of &s2: " << sizeof(&s2) << endl;     //4
}

指针与地址

标签:

原文地址:http://www.cnblogs.com/jfl-xx/p/4937329.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!