Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
Naah, The last 3 times I've installed the VB complete pack and tried doing c++ stuff and tutorials for the last 2 years it just bugs up. Must be something wrong with my comp I think
First off, I see you're using %d, which is reference to decimal, yet you use an 8-digit int index, which refers to octal. Know that octal is represented as %o.
This is an easy-to convert int to binary:
char binary[33];
int integer = 255;
_itoa(integer, binary, 2);
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.