Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

33
votes
6answers
1k views

why -3==~2 in C#

Unable to understand. Why output is "equal" code: if (-3 == ~2) Console.WriteLine("equal"); else Console.WriteLine("not equal"); output: equal
25
votes
10answers
7k views

Why is two's complement used to represent negative numbers?

I'm just curious if there's a reason why in order to represent -1 in binary, two's complement is used: flipping the bits and adding 1? -1 is represented by 11111111 (two's complement) rather than (to ...
14
votes
6answers
8k views

What is “2's Complement”?

I'm in a computer systems course and have been struggling, in part, with Two's Complement. I want to understand it but everything I read hasn't brought the picture together for me. I've read the ...
11
votes
6answers
266 views

How to detect encodings on signed integers in C?

The ISO C standard allows three encoding methods for signed integers: two's complement, one's complement and sign/magnitude. What's an efficient or good way to detect the encoding at runtime (or some ...
10
votes
4answers
1k views

How do I detect overflow while multiplying two 2's complement integers?

I want to multiply two numbers, and detect if there was an overflow. What is the simplest way to do that?
7
votes
3answers
162 views

Is plain char usually/always unsigned on non-twos-complement systems?

Obviously the standard says nothing about this, but I'm interested more from a practical/historical standpoint: did systems with non-twos-complement arithmetic use a plain char type that's unsigned? ...
6
votes
6answers
6k views

Why byte b = (byte) 0xFF is equals to integer -1?

Why byte b = (byte) 0xFF is equal to integer -1? Ex: int value = byte b = (byte) 0xFF; System.out.println(value); it will print -1?
5
votes
1answer
214 views

Explain a line of two's complement math counting free virtual memory

I have a Visual Studio 2008 C++ application for Windows Mobile 6.x where I'm counting the amount of free virtual memory available for a given process. (I realize it is not taking fragmentation in to ...
5
votes
4answers
406 views

representation of negative numbers in c?

How does c represent negative integers! Is it by 2's complement representation or by using the msb? -1 in hexadecimal is ffffffff. So please clarify me in this regard.
5
votes
5answers
2k views

Convert 2 bytes to a number

I have a control that has a byte array in it. Every now and then there are two bytes that tell me some info about number of future items in the array. So as an example I could have: ... ... Item ...
5
votes
9answers
852 views

bitwise not operator

Why bitwise operation (~0); prints -1 ? In binary , not 0 should be 1 . why ?
5
votes
10answers
3k views

2's complement example, why not carry?

I'm watching some great lectures from David Malan (here) that is going over binary. He talked about signed/unsigned, 1's compliment, and 2's complement representations. There was an addition done of 4 ...
5
votes
4answers
4k views

Two's Complement in Python

Is there a built in function in python which will convert a binary string, for example '111111111111', to the two's complement integer -1?
4
votes
4answers
79 views

Why Long.toHexString(0xFFFFFFFF) returns ffffffffffffffff

This is what I see in java, and it puzzles me. Long.toHexString(0xFFFFFFFF) returns ffffffffffffffff Similarly, 0xFFFFFFFF and Long.parseLong("FFFFFFFF", 16) are unequal.
3
votes
5answers
227 views

Why Two's Complement?

I'm writing a tutorial to teach kids (ages 9 to 13) about programming. I started with computers themselves, they don't have that much to do with computer science, it's more about the process involved ...
3
votes
1answer
574 views

VHDL complement counter issues: converting std_logic to integer

Essentially, my question is: "can this not be done any easier?"; and what 'this' is, follows below (code too): I wanted to have a sort of a 'complement' counter function, implemented in VHDL, which ...
3
votes
1answer
430 views

Convert a signed decimal to hex encoded with two's complement

I need to encode a signed integer as hexadecimal using via the two's complement notation. For example I would like to convert e.g. -24375 to 0xffffa0c9. So far I have been working on the ...
3
votes
6answers
2k views

Two's complement conversion

I need to convert bytes in two's complement format to positive integer bytes. The range -128 to 127 mapped to 0 to 255. Examples: -128 (10000000) -> 0 , 127 (01111111) -> 255, etc. EDIT To ...
2
votes
2answers
52 views

carry/overflow & subtraction in x86

I'm trying to wrap my head around overflow & carry flags in x86. As I understand it, for addition of signed 2's complement numbers, the flags can only be generated in one of four ways (my ...
2
votes
7answers
162 views

Why does -INT_MIN = INT_MIN in a signed, two's complement representation?

I still haven't found a reason why the lowest signed negative number doesn't have an equivalent signed positive number? I mean in a 3 digit binary number for simplicity 100 is -4? but we can't have a ...
2
votes
2answers
108 views

How to add and subtract 16 bit floating point half precision numbers?

How do I add and subtract 16 bit floating point half precision numbers? Say I need to add or subtract: 1 10000 0000000000 1 01111 1111100000 2’s complement form.
2
votes
4answers
584 views

2's complement hex number to decimal in java

I have a hex string that represents a 2's complement number. Is there an easy way (libraries/functions) to translate the hex into a decimal without working directly with its bits?? E.G. This is the ...
2
votes
1answer
523 views

How to convert a negative integer into two's complement binary form? (Java)

I need to convert numbers, positive and negative, into binary format - so, 2 into "00000010", and -2 into "11111110", for example. I don't need more than 12 bits or so, so if the string is longer than ...
2
votes
4answers
149 views

Wrapping my head around hardware representations of numbers: a hypothetical two's complement question

This is a super naive question (I know), but I think that it will make for a good jumping off point into considering how the basic instruction set of a CPU actually gets carried out: In a two's ...
2
votes
5answers
665 views

How to print a signed integer as hexadecimal number in two's complement with python?

I have a negative integer (4 bytes) of which I would like to have the hexadecimal form of its two's complement representation. >>> i = int("-312367") >>> "{0}".format(i) '-312367' ...
2
votes
1answer
125 views

Signed Hexidecimal value range

Say I had a 6 digit hexadecimal signed in two's complement. What would be its range? -(16 ^ 5) < x < (16 ^ 5) Correct?
2
votes
5answers
348 views

How to prove that the C statement -x, ~x+1, and ~(x-1) yield the same results?

I want to know the logic behind this statement, the proof. The C expression -x, ~x+1, and ~(x-1) all yield the same results for any x. I can show this is true for specific examples. I think the way ...
1
vote
0answers
72 views

why is it called two's complement? [closed]

Possible Duplicate: two's complement, why the name “two” why is using a sign bit so to represent negative numbers is call "2's complement"? How did such name come about, can ...
1
vote
2answers
57 views

Two's complement stm32 c

I have a number that is "significant byte", it may be 0 or 255. Which means 0 or -1. How to convert 255 to -1 in one time. I have a function that doesn't works for me: acc->x = ((raw_data[1]) ...
1
vote
0answers
30 views

looking for a tutorial on representation of numbers [closed]

I remember reading a tutorial a couple of years ago where concepts like twos complement and floating point numbers were explained with lots of drawings, involving cute animals. I think it was a ...
1
vote
3answers
87 views

Why do integers in Java integer not use all the 32 or 64 bits?

I was looking into 32-bit and 64-bit. I noticed that the range of integer values that can stored in 32 bits is ±4,294,967,295 but the Java int is also 32-bit (If I am not mistaken) and it stores ...
1
vote
1answer
67 views

Minimum bits required for two's complement number representation

I need to find out that how can we represent -1 and -3 in minimum number of bits in Two's complement number system. I calculated the answer 1 and 111 but the answers seem to be incorrect. I would be ...
1
vote
4answers
89 views

How do you differentiate -1 from 0xff when reading a byte from a Java FileInputStream?

So, I had to take a test for a job interview where I was required to write a mini app that performed simple XOR encryption, and came across this question. I used a FileInputReader to pull each byte ...
1
vote
3answers
230 views

unsigned char rotate

I'm a little bit confused as to what an unsigned char is. A signed char is the representation of the char in bit form right? A sample problem has us rotating to the right by n bit positions, the bits ...
1
vote
4answers
114 views

Bitwise Complement

I have a sample problem with w=1, y=7, z=0, x = ~(w && y) | y; and the solution is x = -1, but I can't figure out why? Here is my thought process: (w && y) = (1 && 7) = 1 ~1 1 ...
1
vote
3answers
536 views

Two's complement proof

Is it possible to prove by induction that the two's complement of any string of 0's will always result in 0, for all sequences of length n? I'm trying to do this using the value formula, i.e. value ...
1
vote
4answers
1k views

Python - Applying Two's Complement to a String

I am trying to add the Two's Complement to a Binary number represented with a string. Assuming the string has already been flipped, how would I go about "adding" 1 to the last character, and replacing ...
1
vote
5answers
438 views

Why is ~3 equal to -4 in Python?

I'm getting started in Python programming. I'm reading a basic tutorial, but this point is not very clear to me. I would appreciate any help you can give me.
1
vote
2answers
1k views

Adding and subtracting two's complement

Using six-bit one's and two's complement representation I am trying to solve the following problem: 12 - 7 Now, i take 12 in binary and 7 in binary first. 12 = 001100 - 6 bit 7 = 000111 - 6 bit ...
1
vote
2answers
446 views

Join MSB and LSB of a 16 bit signed integer (two's complement)

I'm working with a proprietary protocol that transmits integers as 16 bit two's complement in two parts. The LSB is transmitted first followed by the MSB. Is the following code to restore the original ...
1
vote
3answers
898 views

C - converting to 2s complement

I've decided to do it this way flip numbers 0=1, 1=0 add 1 to LSB if carry, loop until array[i]==0 But I'm stuck on the last point; how can I say that in a conditional loop?
0
votes
1answer
64 views

resizing a byte[] two's compliment repressented integer

Ok, I have a two's compliment representation of a number, in a byte array, and I want to expand it to use a larger byte array. (You can get two's compliment byte[] out of BigIntegers) So my new byte ...
0
votes
1answer
87 views

Converting hex to binary and one and two's complement in 16 bits

I am trying to convert FFAD (hex) to a decimal value and then do one and two's complement on it. FFAD is represented as a 16 bit integer. When I convert FFAD to base 2 I get 1111111110101101. My ...
0
votes
2answers
130 views

Converting 32 bit hexadecimals to decimal in java

for an assignment I have to write a program that will take in an 8 character string(hexadecimal) and then convert it to base 10. I am not allowed to use any outside classes to do this. I'm pretty sure ...
0
votes
3answers
107 views

Subtraction of 2 negative integer (two's complement) never overflowing

I came across this in a computer architecture textbook: Subtracting a strictly negative integer from another strictly negative integer (in two's complement) will never overflow. The textbook ...
0
votes
2answers
66 views

Two's Complement Addition issues

I'm working on Two's complement addition. Basically I need to show the addition of -27 to +31, with both numbers in binary using 6 bits. My problem is with carry operations. Maybe I'm not doing it ...
0
votes
2answers
94 views

subtracting two values of unknown bitsize

Im trying to subtract two values from each other using twos compliment. i have a problem with the overflowing bit. since my container hold an unlimited bit sized integer, i dont know if the top bit of ...
0
votes
3answers
115 views

Is there a hardware unit called “ 2's complement ”?

I understand that in order to do a subtraction you should do a 2's complement transformation to the second number . Is there a dedicated Hardware for that checks the MSB and if it is found to be 1 it ...
0
votes
1answer
359 views

Converting decimal number into 2's complement using 16 bits

The problem: What is the decimal number -234 in 2's complement using 16 bits? Do I just have to convert 234 to binary?
0
votes
0answers
22 views

Utility to display binary in various integer representations

I have a binary data file which contains two-byte integers, however the encoding of these integers (little-endian, big-endian, two's compliment, one's compliment, sign-and-magnitude, et cetera) is ...

1 2