How to set binary value to int variable in C++

1 Answer

0 votes
#include <iostream>

int main(void)
{
    int bin = 0b11111;
 
    std::cout << bin;
}
 
 
 
 
 
/*
run:
 
31
 
*/

 



answered Aug 1, 2022 by avibootz

Related questions

1 answer 149 views
149 views asked Jul 31, 2022 by avibootz
1 answer 150 views
1 answer 128 views
1 answer 179 views
1 answer 198 views
1 answer 186 views
1 answer 124 views
...