1
0
Fork 0

Cleanup a tab or two.

This commit is contained in:
Kenwood 2021-06-10 19:06:34 -04:00
parent 5b61c418c5
commit df33c35407
1 changed files with 2 additions and 2 deletions

View File

@ -35,6 +35,6 @@ int main(int argc, char *argv[])
printf("Bit number %d is not SET in number %d.\n",BIT,BINARY_NUM); printf("Bit number %d is not SET in number %d.\n",BIT,BINARY_NUM);
} }
std::cout << "BIN = " << std::bitset<8>(BINARY_NUM) << std::endl; // Send the bitset to cout std::cout << "BIN = " << std::bitset<8>(BINARY_NUM) << std::endl; // Send the bitset to cout
std::cout << "BIT = " << std::bitset<8>(BIT) << std::endl; // Send the bitset to cout std::cout << "BIT = " << std::bitset<8>(BIT) << std::endl; // Send the bitset to cout
return 0; return 0;
} }