关键字是在C++库中预定义或保留的词,具有固定含义,用于执行内部操作。C++语言支持60多个关键字。每个关键字都以小写字母存在,例如auto、break、case、const、continue、int等。C++语言中有32个关键字也存在于C语言中。auto double int struct break else long switch case enum register typedef char extern return union const float short unsigned continue for signed void default goto sizeof volatile do if static while 这些是30个在C语言中不存在,但添加到C++中的保留字asm dynamic_cast namespace reinterpret_cast bool explicit new static_cast catch false operator template class friend private this const_cast inline public throw delete mutable protected true try typeid typename using using using wchar_t 输入:str=”for” 输出:for是一个关键字 解释 关键字是保留字,不能在程序中用作变量名。C语言中有32个关键字。将字符串与每个… 阅读更多