【单选题】只读存储器(ROM)与随机存取存储器(RAM)的主要区别在于( )。
A.
ROM 可以永久保存信息,RAM在断电后信息会丢失
【判断题】水是地球上唯一能在自然条件下三态并存的物体,在相变中伴随有能量、天气、水循环等过程。 ()
【单选题】只读存储器(ROM) 与随机存取存储器(RAM)的主要区别在于()
A.
.在断电后,ROM中存储的信息不会丢失,RAM信息会丢失
【单选题】第 37 题(本题:1分) 若有以下程序 #include #include typedef struct stu { char name[10], gender; int score; } STU; void f( char *p ) { strcpy( p, "Qian" ); } main() { STU a={"Zhao", 'm', 290}, b; b=a; f(b.name); ...
B.
Zhao,m,290, Zhao,m,290
【单选题】第 37 题(本题:1分) 若有以下程序 #include #include #include typedef struct stu { char *name, gender; int score; } STU; void f(char *p) { p=(char *)malloc(10); strcpy(p, "Qian"); } main() { STU a={NULL, 'm', 29...
【单选题】第 35 题(本题:1分) 若有以下程序 #include #define S(x) x*x #define T(x) S(x)*S(x) main() { int k=5, j=2; printf("%d,%d\n", S(k+j),T(k+j)); } 则程序的输出结果是
【单选题】只读存储器(ROM)与随机存取存储器(RAM)的主要区别在于( )
A.
在掉电后,ROM中存储的信息不会丢失,RAM信息会丢失