The person who issues the invitation in the first place will eventually end up paying.()
第1题:
有以下程序: #include <iostream> using namespace std; char *x[]={"First", "Second", "Third" }; void f(char *z[ ]) { cout<<*z++<<end1; } int main ( ) { char **y; y=x; f(y); return 0; }
A.产生语法错误
B.First
C.Secpnd
D.Third
第2题:
第3题:
在Word中编辑文本时,快速将光标移动到行首或文本行尾,使用的操作是:
A.Home或End
B.^Home或^End(说明:^指上档键,也即Shift键,下同)
C.Up或Down
D.^Up或^Down
第4题:
第5题:
设计不规则元件体时,通过什么操作实现?()
A.Place-->line
B.Place-->wire
C.Place-->Bus
D.Place-->Netlable
第6题:
Person类可能的拷贝构造函数格式为:
A.Person(){}
B.Person(Person *p){}
C.Person(Person &p){}
D.Person(Person p){}