0
votes
3answers
41 views
MySQL integer unsigned arithmetic problems?
Does MySQL (5.0.45) like to do strange internal typecasts with unsigned maths? I am storing integers unsigned but when selecting basic arithmetic I get outrageous numbers:
mysql& …
1
vote
8answers
215 views
Conversion from unsigned to signed type safety?
Is it safe to convert, say, from an unsigned char * to a signed char * (or just a char *?
12
votes
8answers
1k views
Why doesn’t Java support unsigned ints?
Why doesn't Java include support for unsigned integers? It seems to me to be an odd omission, given that they allow one to write code that is less likely to produce overflows on u …
2
votes
5answers
140 views
Java: Unsigned numbers
Hello,
Is there a way in Java to use Unsigned numbers like in (My)SQL?
For example: I want to use an 8-bit variable (byte) with a range like: 0 -> 256; instead of -128 -> 127.
0
votes
2answers
77 views
PHP’s unsigned integer on 32 bit and 64 bit platform
Here is the code:
echo sprintf('%u',-123);
And this is the output on 32 bit platform:
4294967173
but on 64 bit:
18446744073709551493
How to make it the same ?Say,the int(1 …
1
vote
6answers
205 views
How do you get an unsigned long out of a string?
What's the safest and best way to retrieve an unsigned long from a string in C++?
I know of a number of possible methods.
First, converting a signed long taken from atol.
char * …
0
votes
1answer
135 views
storing a value from an unsigned interger (2bytes long) to an unsigned char variable using bitwise operators?
How do I put the value of 0x04 in register 4 if the instruction was 1rxy?
1RXY-Load register R with the value at memory address XY
#include <stdio.h>
unsigned char r0,r1,r2 …
2
votes
2answers
210 views
How to get the signed integer value of a long in python?
If lv stores a long value, and the machine is 32 bits, the following code:
iv = int(lv & 0xffffffff)
results an iv of type long, instead of the machine's int.
How can I …
1
vote
3answers
156 views
C# Convert.ToInt16(String) C Equivalent
What is the C equivalent of Convert.ToInt16(String) method of C#?
In my case my string is a char array.
Thanks
0
votes
1answer
211 views
How to convert char * to unsigned int in C programming in win32
Hi
I am trying to convert char *str = "10.20.30.40" ; in to unsigned int . can u pls tell me any method is there or any sample code . pls share me.
0
votes
2answers
150 views
How to declare 8-bit unsigned integer in ruby?
In c++ you can do:
uint8 foo_bar
How would we do the same thing in ruby? Any alternatives?
This post seems close to it maybe someone can explain?
0
votes
5answers
494 views
Ruby - read bytes from a file, convert to integer
Hey,
I'm trying to read unsigned integers from a file (stored as consecutive byte) and convert them to Integers. I've tried this:
file = File.new(filename,"r")
num = file.read(2) …
1
vote
3answers
249 views
Downloading a file over https over java
Hi,
Here is a code that I copied from the web
/**
* A simple example that uses HttpClient to perform a GET using Basic
* Authentication. Can be run standalone without paramete …
5
votes
4answers
203 views
What should happen to the negation of a size_t (i.e. `-sizeof(struct foo)`))?
I'm dealing with some code at work that includes an expression of the form
-(sizeof(struct foo))
i.e. the negation of a size_t, and I'm unclear on what the C and C++ standards …
0
votes
6answers
623 views
What are unsigned variables?
I have seen this mentioned a lot but I have never figured out what it meant. Can anyone help me out?
