2
votes
10answers
214 views
memory address positive or negative value in c?
in c, i tried to print out address of variable and address of some function.
I got one is negative value, the other is positive value.
My question is: why does C not represent in …
0
votes
3answers
84 views
Negative integers to percentage
I have a lot of files with data to convert to percentages using basic math functions:
<param id="1" name="otb" value="0.160"/>
<param id="2" name="blm" value="-0.210"/> …
3
votes
5answers
545 views
Objective C - Random results is either 1 or -1
I am trying randomly generate a positive or negative number and rather then worry about the bigger range I am hoping to randomly generate either 1 or -1 to just multiply by my othe …
1
vote
3answers
88 views
After reading in bytes from file, most are right except 1 is wrong and negative
In Java, I just read a file into a ByteBuffer. When I started checking to make sure that the ByteBuffer contained the right bytes, I noticed that it had mostly the correct start an …
5
votes
9answers
799 views
Weird Objective-C Mod Behavior
So I thought that negative numbers, when mod'ed should be put into positive space... I cant get this to happen in objective-c
I expect this:
-1 % 3 = 2
0 % 3 = 0
1 % 3 = 1
2 % …
1
vote
1answer
148 views
SQL Server 2000 distinguishes between decimal zero 0.00 and -.00 while ADO.NET does not
We're using SQL Server Standard Edition 8.00.760 (SP3) on a Small Business Server 2003 platform.
While tracking down an inexplainable System.Data.DBConcurrencyException for a Stron …
0
votes
4answers
146 views
Handle negative time spans
in my output of a grid
i calculate a TimeSpan and take its TotalHours ex. (Eval("WorkedHours") - Eval("BadgedHours")).TotalHours
goal is to show this TotalHours as : 39:44 so. Fi …
1
vote
4answers
557 views
Adding negative and positive binary?
Hi, I have f.eks
X = 01001001 and Y = 10101010
If I want to add them together how do I do that? They are "Two's Complement"...
I have tried a lots of things but I am not quite sur …
0
votes
7answers
865 views
Two’s complement binary form
In a TC++ compiler, the binary representation of 5 is (00000000000000101).
I know that negative numbers are stored as 2's complement, thus -5 in binary is (111111111111011). The mo …
2
votes
9answers
3k views
Make a negative number positive in Java
Hi, I'm sure this is a very simple question! I have a Java method in which I'm summing a set of numbers. However, I want any negatives numbers to be treated as positives. So (1)+(2 …
0
votes
1answer
123 views
DrawItemEventArgs’ “Index” property goes negative sometimes(C#)(RESOLVED)
Hi. I have an owner-drawn listbox control in my project. The problem is that sometimes the DrawItemEventArgs argument passed to my DrawItem event-handler has an Index property of " …
0
votes
3answers
334 views
In CSS, getting a logo to position over a central layout and stick out to the left?
Hello there, I'm really stuck here...
I have a site layout with a central layout (it's about 922px width, centered on the page)... I have a little logo that is to the top left of …
