美文网首页
40 - sizeof

40 - sizeof

作者: 社交帐号直接注册 | 来源:发表于2018-01-02 10:15 被阅读0次
    #include <iostream>
    using namespace std;
    
    int main()
    {
        char c;
        cout << sizeof(c) << endl;
        int a;
        cout << sizeof(a) << endl;
        double b;
        cout << sizeof(b) << endl;
        double bucky[10];
        cout << sizeof(bucky) << endl;
        cout << sizeof(bucky)/sizeof(bucky[0]) << endl;
        return 0;
    }
    

    相关文章

      网友评论

          本文标题:40 - sizeof

          本文链接:https://www.haomeiwen.com/subject/lzkfnxtx.html