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 136 views
136 views asked Jul 31, 2022 by avibootz
1 answer 137 views
1 answer 119 views
1 answer 165 views
1 answer 182 views
1 answer 170 views
1 answer 159 views
...