#include<iostream>
#include<string>//定义字符型变量要包含此头文件(c++类型)
using namespace std;
int main()
{
char ch = 'a';//字符型变量,用单引号
cout << ch << endl;
cout << sizeof(char) << endl;//输出此字符型常量所占字节数
cout << (int)ch << endl;//输出字符型变量对应的ASCII编码
//C语言类型定义字符串型变量
char str1[] = "good job";//双引号
cout << str1 << endl;
cout << sizeof(str1) << endl;
//c++类型定义字符串型变量
string str2 = "hello world";
cout << str2 << endl;
cout << sizeof(str2) << endl;
return 0;
}
//sizeof关键字可以统计数据类型所占的内存大小
//sizeof(数据类型\变量名称)