int main()
{
return 0;
} 只有一个语句return结束函数。将0改为-1时,没有返回错误标志。
关于注释
std :: cout << /* "*/" */ << std :: endl; 报错
std :: cout << /* " */ " /* " /* " */ << std :: endl; 正确。输出/*
综上,注释检测到*/然后与它最近的/*配对达到注释效果。
int month = 9, day = 7; /*定义为十进制的9和7*/
int month = 09, day = 07; /*定义的为八进制的9和7*/
指定字面值的类型
字符和字符串字面值
u char16_t类型
U char32_t类型
L wchar_t类型
u8 char类型
整型字面值
u或U unsigned
l或L long
ll 或 LL long long
浮点型字面值
f 或 F float
l 或 L long double
extern int i; /*声明i并非定义i*/