How to set binary value to int variable in C

1 Answer

0 votes
#include <stdio.h>

int main(void)
{
    int bin = 0b11111;

    printf("%d\n", bin);

    return 0;
}





/*
run:

31

*/

 



answered Jul 31, 2022 by avibootz

Related questions

1 answer 142 views
1 answer 150 views
1 answer 128 views
1 answer 179 views
1 answer 198 views
1 answer 186 views
1 answer 124 views
...