问题详情

有以下程序

main()

{ char s[]={"aeiou"},*ps;

ps=s; printf("%c\n",*ps+4);

}

程序运行后的输出结果是

A)a

B)e

C)u

D) 元素 s[4] 的地址

参考答案
您可能感兴趣的试题