[单选题]执行下面的程序段后,(AX)=______。 TAB DW 1,2,3,4,5,6 ENTRY EQU 3 MOV BX, OFFSET TAB ADD BX, ENTRY MOV AX, [BX]A.003HB.0300HC.0400HD.0004H
[单选题]执行以下程序段后,m的值为 ( ) int a[2][3]={{1,2,3}{4,5,6}}; int m,* p; p=& a[0][0] m=(* p) * ( * p+2)) * ( * (p+4));A.15B.14C.13D.12
[单选题]有以下程序:includemain(){int a[]={1,2,3,4,5,6,7,8,9,10,11,12,},*p=a£«5,*q=NULL;*q有以下程序: #include <stdio.h> main() { int a[]={1,2,3,4,5,6,7,8,9,10,11,12,},*p=a+5,*q=NULL; *q=*(p+5); printf("%d %d /n",*p,*q); } 程序运行后的输出结果是( )。A.运行后报错B.66C.611D.510
[单选题]有以下程序:includemain(){int.a[]={1,2,3,4,5,6,7,8,9,10,11,12,},*p=a£«5,*q=NULL;*q有以下程序: #include <stdio.h> main() {int.a[]={1,2,3,4,5,6,7,8,9,10,11,12,},*p=a+5,*q=NULL; *q=*(p+5); printf("%d %d/n",*p,*q); } 程序运行后的输出结果是( )。A.运行后报错B.6 6C.6 11D.5 10
[主观题]int a[2][3]={1,2,3,4,5};问:a[1][2]=?
[主观题]int a[2][3]={1,2,3,4,5};问:a[1][2]=?
[单选题]执行以下程序段后,m的值为______。 int a[2][3]={ {1,2,3},{4,5,6} }; int m,*p; p=&a[0][0]; m=(*p)*(*(p+2))*(*(p+4));A.15B.14C.13D.12
[单选题]以下语句定义正确的是( )A.)int a[1][4]-{1,2,3,4,5};B.)float a[3][]={{1},{2},{3}};c)long a[2][3]={{1},{1,2},{1,2,3},{0,0)};D.)double a[][3]={O);
[单选题]以下语句定义正确的是( )A.)int a[1][4]-{1,2,3,4,5};B.)float a[3][]={{1},{2},{3}};c)long a[2][3]={{1},{1,2},{1,2,3},{0,0)};D.)double a[][3]={O);
[单选题]下面程序的输出结果是main(){ int a[10]={1,2,3,4,5,6,7,8,9,10},*p=a;printf("%d/n",*(p+2));}A.3B.4C.1D.2