C51语言的data、bdata、idata有什么区别?
C51语言的data、bdata、idata有什么区别?
相关考题:
下面的C程序完成的功能是()。 #include #defineSIZE5 voidfunc(intdata[SIZE]); main() { inti,buf[SIZE]; printf(""Pleaseinput%dnumbers:"",SIZE); for(i=0;idata[j+1]) { d=data[j]; data[j]=data[j+1]; data[j+1]=d; } }A、对一维数组降序排序B、对一维数组升序排序C、对一维数组逆向排序D、对一维数组顺序排序
定义一个int类型的有10个无素的数组x,存储于程序存储器,正确的定义语句是:()A、int data x[10];B、int xdata x[10];C、int code x[10];D、int idata x[10];
单选题设有定义:struct complex{int real,unreal;} data1={1,8},data2;则以下赋值语句中错误的是( )。Adata2=data1;Bdata2=(2,6);Cdata2.rea1=data1.rea1;Ddata2.rea1=data1.unrea1;
单选题若要对Data类中重载的加法运算符成员函数进行声明,下列选项中正确的是( )。AData+ (Data);BData operator+(Data);CData +operator(Data);Doperator+ (Data, Data);
单选题Which of the following is a distinguishing factor between data archiving and data backups?()AData archives are kept for disaster recovery purposes while data backups are kept for indefiniteperiods of time so that there is an information record.BData archives are kept for documentation purposes to easily recover data while data backupsare kept for immediate server recovery.CData archives are kept off-site for data warehousing purposes while data backups are keptlocally for immediate server recovery purposes.DData archives are kept for indefinite periods of time so there is a record while data backups arekept for disaster recovery purposes.