第31130题 单选题
以下C++代码执行后,控制台的输出结果为?
#include <iostream>
using namespace std;
int main() {
    char *str = "hello world";
    str += 6;
    cout << str << endl;
    return 0;
}
A

world

B

hello

C

w

D

程序运行报错或输出乱码

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析