以下程序的输出结果是_____。#include using namespace std;void main() { char c='z'; cout<
查看答案
语句”cout<< "a\bre\'hi\'y\\\bou\n";”的输出结果是_____。(说明:'\b'是退格符)
A. a\bre\'hi\'y\\\bou
B. a\bre\'hi\'y\bou
C. re'hi'you
D. abre'hi'y\bou
有如下程序#include using namespace std;void main( ){int y=3,x=3,z=1; cout<<(++x,y++)<<" "<
A. 3 4
B. 4 2
C. 4 3
D. 3 3
请读程序段:short int i=65536; cout<
A. 65536
B. 0
C. 有语法错误,无输出结果
D. -1
若x和y都是int型变量,x=100,y=200,且有下面的程序段: cout<<(x,y);上述程序段的输出结果是_____。
A. 200
B. 100
C. 100 200
D. 输出不确定的值