0
votes
8answers
99 views
Hashing function for four unsigned integers (C++)
I'm writing a program right now which produces four unsigned 32-bit integers as output from a certain function. I'm wanting to hash these four integers, so I can compare the output of this function to …
1
vote
1answer
35 views
How do I create a simple integer in Objective-C?
I am trying to create a simple integer variable and can't get it to accept a value.
Why does the NSLog print out i=(null)?
int i;
i = 0;
NSLog(@"i=%@", i);
How do I create a simple index for an …
0
votes
2answers
44 views
How to display integers in messagebox in Visual C#?
I am trying to use a messagebox to debug a Visual C# program. When I click a button I want a simple messagebox to popup and display the values of several integer variables. This is what I have
…
0
votes
2answers
15 views
Axapta: force container integer to be stored as a string
Is there a way to force a container to store all values as strings? I am using str2con in order to split text strings into containers.
Any time a field with numbers only comes up, it is stored as an …
0
votes
2answers
25 views
[iphone DEV] makes pointer from integer without a cast
Hello, i have a simply warning in my iphone dev code.
NSUInteger *startIndex = 20;
This code work, but i have a warning :
warning: passing argument 1 of 'setStartIndex:' makes pointer from integer …
2
votes
1answer
40 views
Objective-C - Comparing integers not working as expected
Hi everyone. So my problem is this:
I am receiving a JSON string from across the network. When decoded (using SBJSON libraries), it becomes an NSDictionary that SHOULD contain a number of some sort …
0
votes
1answer
12 views
Displaying the size of a file in CListCtrl
I am working in Windows MFC application..In my design am displaying the file details (type,name,size) in a CListCtrl control. I found those file details using FileStatus but when I try to display, I …
0
votes
2answers
46 views
NoReverseMatch in django
Hi. After debugging for a while I found what the error was, but I don't know how to fix it.
I have an urlConf whit the name 'ver_caja' who receives as argument the id of a caja object, and then call …
5
votes
6answers
181 views
Performance of 32-bit integers in a 64-bit environment (C++)
We've started compiling both 32- and 64-bit versions of some of our applications. One of the guys on my project is encouraging us to switch all of our 32-bit integers to their 64-bit equivalents, …
0
votes
5answers
179 views
Sending an int over TCP (C-programming)
Hi!
I have a server and a client program (both running on the same machine). The client is able to send a struct to the server with members such as "ID", "size" etc. Then I would like the server to …
0
votes
3answers
51 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> create table tt …
2
votes
1answer
43 views
Why does this code in VBA Power Point work fine witout Dim commands for numbers?
From one of VBA tutorials I learned that variables contining numbers should be firstly declared as integers:
Dim mynumber as integer
But, please, look at this code:
Sub math()
A = 23
B = …
1
vote
3answers
87 views
Python Class with integer emulation
Given is the following example:
class Foo(object):
def __init__(self, value=0):
self.value=value
def __int__(self):
return self.value
I want to have a class Foo, which acts …
8
votes
14answers
905 views
Efficient way to determine number of digits in an integer
What is a very efficient way of determining how many digits there are in an integer in C++?
1
vote
3answers
66 views
Storing ints in a Dictionary
As I understand, in Objective-C you can only put Objects into dictionaries. So if I was to create a dictionary, it would have to have all objects. This means I need to put my ints in as NSNumber, …
