sizeof与strlen.md

**sizeof与strlen的区别: ** 下面以代码的形式来解释 #include <iostream> using namespace std; int main() { cout << sizeof(int) <<"\t"<<sizeof(double)<< endl; int x = 3; cout << sizeof(x) << endl; //cout << strle
相关文章
相关标签/搜索