How can i declare a Binary type
- by hamza
i need to work with a binary number
i just write :
const x = 00010000 ;
& it doesn't work
i know that i can use an hexadecimal number that have the same value as 00010000 but for more knowledge i want to know if there is a type in C++ for binary numbers & if there isn't ,is there another solution for my Problem ?
thanks