+ 1
Can you write a program to show the bits of an integer?
you have to show bits without changing decimal number to binary. you can use bitwise operator. 1&x= x; 0&x= x;
0 Réponse
you have to show bits without changing decimal number to binary. you can use bitwise operator. 1&x= x; 0&x= x;