retum();
}
编译和运行情况是
A)运行时输出1011
B)运行时输出1111
C)运行时输出1112
D)编译有错
(34)有如下程序:
#include
using namespace std;
int main()
{
char str[100],*p;
cout<<”please input a string:”;
cin>>str;
p=str;
for(int i=0;*p!=”\0”;p++,i++);
cout<
retum 0;
}
运行这个程序时,若输入字符串为
abcdefg abcd
则输出结果是
A)7 B)12 C)13 D)100
(35)有如下程序::
#include
using namespace std:
class Sample
{
friend long fun(Sample s);
public:
Sample(long a){x=a;}