简体   繁体   中英

How do I show the actual values in hex instead of the ASCII symbols

int main()
{
   char B[76]={0};

   ifstream infile;
   infile.open("tworecords.dat", ios::binary);
   infile.read(reinterpret_cast<char*>(B), sizeof (B));

   cout << "Array B in hex" << endl;

   for (int i = 0; i < 76; i++)
   {
      cout << hex << B[i] << " " << endl;;
   }

   return 0;


}

right now it reads the data correctly, but prints out the values as ASCII symbols. I would like to output the actual hex values in the file.

example:

01 3D 76 D6 etc.

Cast it to integer:

cout << hex << static_cast<int>(B[i]) << " " << endl;

Or alternatively, if you don't want to cast, just add 0:

cout << hex << B[i]+0 << " " << endl;

However you probably also want to make sure that for values below 16, a leading 0 is printed (eg for the newline character 0A , not just A ):

cout << setfill('0') << setw(2) << hex << B[i]+0 << " " << endl;

You simply cast the number to an integer:

cout << hex << (int)B[i] << " " << endl;

the <iostream> library (actually, all stream libraries) output ascii values for char types.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM