我已经声明了 char 数组char BCommand[100]="00LI002LE99"
,我只想使用002
and 99
。
这是我尝试过的代码:
char Lcommand[3],Lecommand[3];
unsigned char SlaveNodeID=0,NodeValue=0,ChSum2=0;
Lcommand[0]=BCommand[4];
Lcommand[1]=BCommand[5];
Lcommand[2]=BCommand[6];
Lecommand[0]=BCommand[9];
Lecommand[1]=BCommand[10];
SlaveNodeID = atoi(Lcommand);
NodeValue = atoi(Lecommand);
有没有有效的方法来做到这一点?