窗体设计中,决定了按【Tab】键时焦点在各个控件之间移动顺序的属性是( )。
- A.Index
- B.TabStop
- C.TabIndex
- D.SetFocus
热度🔥548
解析:打开微信小程序查看本题解析
要限制宏操作的范围,可以在创建宏时定义
有以下程序
#include
int fun( char s[])
{ int n=0;
while(*s ='0') { n=10*n+*s-'0' ; s++; }
return (n);
}
main()
{ char s[10]={ '6', '1', '*', '4', '*', '9', '*', '0', '*'};
printf("%d\n",fun(s));
}
程序的运行结果是
若有以下程序
#include
typedef struct stu {
char name[10], gender;
int score;
} STU;
void f(STU a, STUB)
{ b = a;
printf( "%s,%c,%d,", b.name, b.gender, b.score );
}
main()
{ STU a={"Zhao", 'm', 290}, b={"Qian", 'f', 350};
f(a,b);
printf("%s,%c,%d\n", b.name, b.gender, b.score);
}
则程序的输出结果是
一个工作人员可以使用多台计算机,而一台计算机可被多个人使用,则实体工作人员与实体计算机之间的联系是( )。
在 Excel 2010 中,要填充从1到100,000的序列,最佳的操作方法是( )。