没有搜到到结果?点击这里求解答/求资源。
【单选题】
在编译指令,宏定义使用哪个指令?()

#include
#define
#if
#else
【单选题】
在编译指令,宏定义使用哪个指令( )

#include
#define
#if
#else
【单选题】
下列()对结构类型变量定义错误

structteacher{intnum;intage;}teach1;
struct{intnum;intage;}teach1,teach2;
struct{intnum;intage;}teacher;structteacherteach1;
structteacher{intnum;intage;};structteacherteach1;
【单选题】
下列()对结构类型变量定义错误

struct teacher {int num; int age; } teach1;
struct {int num; int age; } teach1, teach2;
struct {int num; int age; } teacher; struct teacher teach1;
struct teacher {int num; int age; } ; struct teacher teach1;
【单选题】
将字符串“INPUT”保存到存储单元MESS,正确伪指令

INPUT DB MESS
MESS DB INPUT
INPUT DB MESS
MESS DB INPUT
【单选题】
定义双字变量定义()。

DW
DQ
DD
DT
【单选题】
定义变量定义( )

DW
DB
DD
DT
【单选题】
PHP存在多种变量,其中在函数内部定义变量称之为( )。

变量
局部变量
全局变量
内部变量
【单选题】
PHP存在多种变量,其中在函数内部定义变量称之为( )。

变量
局部变量
全局变量
内部变量
【单选题】
要从文件file.dat读出第10个字节变量c,下列哪个方法适合? ( )

FileInputStream in=new FileInputStream(file.dat); in.skip(9); int c=in.read();
FileInputStream in=new FileInputStream(file.dat); in.skip(10); int c=in.read();
FileInputStream in=new FileInputStream(file.dat); int c=in.read();
RandomAccessFile in=new RandomAccessFile(file.dat); in.skip(9); int c=in.readByte();