第31128题 单选题
以下C++代码运行后的输出结果是?
#include <iostream>
using namespace std;
int main() {
    char str[] = "programming";
    char *s = str;
    s += 3;
    cout << s - 1 << endl;
    return 0;
}
A

ogramming

B

gramming

C

programming

D

编译报错

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