Cleanup a tab or two.
This commit is contained in:
parent
5b61c418c5
commit
df33c35407
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue