在Word 2010中,使用“表格工具/布局”选项卡中的“标题行重复”命令,可以设置跨页表格的标题
参考答案:对
客户在我行购买实物黄金后,可以申请办理实物黄金质押贷款。()
有以下程序 #include<stdio.h> void f(int *p); main() {int a[5]={1,2,3,4,5},*r=a; f(r);printf(”%d\n”;*r); } void f(int *p) {p=p+3;printf(”%d,”,*p);} 程序运行后的输出结果是
A.1,4
B.4,4
C.3,1
D.4,1