- 新增现代 C++ 教程的 Preface 章节,包括英文和中文版本 - 添加 C++ Primer 练习代码 - 新增 Learn C++ 教程的 C++ 开发简介章节 - 添加头文件解析文档 - 更新 mkdocs.yml,包含新教程的目录结构 - 修改项目设置,使用 Python 3.10环境
25 lines
882 B
C++
25 lines
882 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
cout << "bool:\t\t" << sizeof(bool) << " bytes" << endl << endl;
|
|
|
|
cout << "char:\t\t" << sizeof(char) << " bytes" << endl;
|
|
cout << "wchar_t:\t" << sizeof(wchar_t) << " bytes" << endl;
|
|
cout << "char16_t:\t" << sizeof(char16_t) << " bytes" << endl;
|
|
cout << "char32_t:\t" << sizeof(char32_t) << " bytes" << endl << endl;
|
|
|
|
cout << "short:\t\t" << sizeof(short) << " bytes" << endl;
|
|
cout << "int:\t\t" << sizeof(int) << " bytes" << endl;
|
|
cout << "long:\t\t" << sizeof(long) << " bytes" << endl;
|
|
cout << "long long:\t" << sizeof(long long) << " bytes" << endl << endl;
|
|
|
|
cout << "float:\t\t" << sizeof(float) << " bytes" << endl;
|
|
cout << "double:\t\t" << sizeof(double) << " bytes" << endl;
|
|
cout << "long double:\t" << sizeof(long double) << " bytes" << endl << endl;
|
|
|
|
return 0;
|
|
}
|