有以下程序:#include <stdio.h> ma

有以下程序:

#include <stdio.h>
main()
{
    char s[10] = "verygood", *ps = s;
    ps += 4;
    ps = "nice";
    puts(s);
}

程序的运行结果是()。

答案
D

题目信息

题号:4368
题型:单选题
难度:普通