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;

}

執行結果

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 pixnote21 的頭像
    pixnote21

    pixnote21的隨手筆記

    pixnote21 發表在 痞客邦 留言(0) 人氣()