下列数组声明语句中,正确的是
- A.Dim a[3,4] As Integer
- B.Dim a(3,4) As Integer
- C.Dim a(n,n) As Integer
- D.Dim a[3,n] As Integer
热度🔥267
解析:打开微信小程序查看本题解析
有以下程序
#include
struct ord
{ int x,y; } dt[2]={1,2,3,4};
main()
{
struct ord *p=dt;
printf("%d,",++(p->x));
printf("%d\n",++(p->y));
}
程序运行后的输出结果是
若有定义语句:
int year=2009, *p=&year ;
以下不能使变量year中的值增至2010的语句是
若有定义:int a; float b; double c; ,程序运行时输入:a=1,b=2,c=3 ,能把值1输入给变量a、值2输入给变量b、值3输入给变量c的输入语句是