/* note that neither of these functions have been tested, so there may be typos and the like */
/* if you're looking to return a real value: */
unsigned int complement(unsigned int value){
unsigned int returnvalue = 0;
while(value){
returnvalue <<= 1;
returnvalue += !(value & 1);
value >>= 1;
}
return returnvalue;
}
/* if you're looking for a string representing the binary number: */
char *complement(unsigned int value){
int numchars = 8 * sizeof(unsigned int);
int n;
char *returnvalue = malloc((numchars + 1) * sizeof(char));
for(n = 0; n < numchars; n++){
if(value & (1 << (numchars - 1 - n))){
returnvalue[n] = '1';
}else{
returnvalue[n] = '0';
}
}
returnvalue[numchars] = (char)NULL;
return returnvalue;
}
Chat with our AI personalities
1
To get the 2s complement, change all 1 bits to 0s and all 0 bits to 1s, and add 1 to the result. So the 2s complement of the 8-bit binary number 10001011 is the binary integer 01110101. If you want that in decimal, then remember that each place value column is twice the value of the place value column to its right, and the rightmost place value column for an integer is 1. Thus 01110101 in decimal is 64 + 32 + 16 + 4 + 1 = 117 (And 10001011 as a signed 8-bit binary integer represents the decimal integer -117.)
87
Yes
It is a simple linear equation in 's'. Its solution is the number that 's' must bein order to make it a true statement. The solution may be found like this:4s + 10 = 2s + 2Subtract 10 from each side of the equation:4s = 2s - 8Subtract 2s from each side:2s = -8Divide each side by 2 :s = -4