从串口接收缓冲器中将数据读入到变量 temp 中的 C51语句是 ______。
A: A.temp = SCON;
B: B.temp = TCON;
C: C.temp = DPTR;
D: D.temp = SBUF;
A: A.temp = SCON;
B: B.temp = TCON;
C: C.temp = DPTR;
D: D.temp = SBUF;
举一反三
- 从串口接收缓冲器中将数据读入到变量temp中的C51语句是( ) A: temp=SCON; B: temp=TCON; C: SBUF=temp; D: temp=SBUF;
- 从串口接收缓冲器中将数据读入到变量temp中的C51语句是 A: temp=SCON B: temp=PCON C: temp=SBUF D: SBUF=temp
- 从串口接收缓冲器中将数据读入到变量 temp 中的 C51语句是
- 在C51中有个无符号型字符变量temp 和一个位变量flag,要对它们取反,相应的C51语句为( )。 A: temp=~temp ; flag=!flag B: temp=!temp ; flag=~flag C: temp=!temp ; flag=!flag D: temp=~temp ; flag=~flag
- 若定义某字节变量temp=0x01;下列可以实现temp右移三位的语句是? A: temp=temp>>3; B: temp=temp<<3; C: temp=_crol_(temp,3); D: temp=_cror_(temp,3);