stm32 单片机下位机 char转int 方法
#include "stdio.h" int main(void) { char str[100]="42DC0000"; //测试字符串 int a=0; sscanf(str, "%x", &a); //按%x规则提取到&a 此方法类似atoi函数的功能 printf("%x",a); //打印结果 return 0; }
#include "stdio.h" int main(void) { char str[100]="42DC0000"; //测试字符串 int a=0; sscanf(str, "%x", &a); //按%x规则提取到&a 此方法类似atoi函数的功能 printf("%x",a); //打印结果 return 0; }