include <stdio.h>int main(void) {char str[100];int n=1234;sprintf(str,"%d",n);puts(str);return 0;}
把16进制数对应的字符串转换成整数写函数int htoi(char s[]),将字符串s,转换为整数,其中s为16进制数对应的字符串,例如“0x2f”,其中0x为16进制的前缀。C语言
把16进制数对应的字符串转换成整数写函数int htoi(char s[]),将字符串s,转换为整数,其中s为16进制数对应的字符串,例如“0x2f”,其中0x为16进制的前缀。C语言