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.
void CYourDialog::OnMessage()
{
UpdateData();
char buffer[20]; //20 could take numbers up to 2^18(+\0)
_itoa(decimal_variable, buffer, 2)//2 indicates binary
strBinaryVariable= buffer;
UpdateData(FALSE);
}