如何将16进制字符串转换成整型?

如何将16进制字符串转换成整型?

     char  test[]  =   " 0xf " ;
    
long  lResult  =  strtol(test,  ' \0 ' 16 );

你可能感兴趣的:(如何将16进制字符串转换成整型?)