tianshangren531 的 站内主页
2008
03-21
03-21
哪位能帮我分析一下下面这题的输出结果为什么是D:
printf("a\bre\'hi\'y\\\bou\n");
(A)a\bre\'hi\'y\\\bou (B)a\bre\'hi'\y\bou
(C)re'hi'you ....
Read More >
2008
03-21
03-21
哪位知道为什么下面这一题选A:
下面的变量定义合法的是: A
(A)short _a=1-.1e-1; (B)double=1+5e2.5;
(C)long do=0xfdaL; (D)float 2_and....
Read More >
2008
03-21
03-21
哪位能为我分析下面这道题:
#include<stdio.h>
{ char a,b;
a=getchar();
a=a-'A'+'0';b=b*2;
printf("%c,%c",a,b);
}....
Read More >