close
如果是十六進位的數字字元,即0~9 , A~Z , a~z ,傳回非零值,否則為零。
#include <iostream>
#include <string>
using namespace std;
//-----------------------
int main()
{
char A = 0x41 ;
char a = 0x61 ;
char ch = '9' ;
int num = 1 ;
cout << isxdigit(A) << endl ;
cout << isxdigit(a) << endl ;
cout << isxdigit(ch) << endl ;
cout << isxdigit(num) << endl ;
system("pause");
return 0;
}
執行結果
全站熱搜