单选题 下面c++标识符中正确的是( )。
A) _abc B) 3ab C) int D) +ab

【正确答案】 A
【答案解析】[解析] C++标识符命名的规则:只能由'auz'、'A'-'z'、'0'-'9'、'-'等字符组成,且数字不能开头,不能与系统保留字冲突。