Tagged Questions

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 …
2
votes
7answers
120 views

Adding up all the positive numbers in Excel

Is there a way to add up all of the positive numbers in a row/column but ignoring all of the negative numbers? Like SUM(), except that it ignores negative numbers. Would I have t …
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 …
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 % …
0
votes
4answers
571 views

Positive number validation in jquery

I have use an expression for validating positive number ^\d*.{0,1}\d+$ when i give input -23 then it check it is negetive but when i give input +23 then showing invalid number. …
10
votes
25answers
929 views

Tricks to staying positive

I find that developers tend to become increasingly negative as they become more tired, stressed out, and overcommitted. What tricks do you use to keep a positive attitude? Are th …
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 …