5
votes
6answers
171 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- …
0
votes
5answers
161 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 …
0
votes
3answers
40 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& …
2
votes
1answer
42 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 mat …
1
vote
3answers
63 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 int …
0
votes
2answers
38 views
How to convert Integer to Date in JSP page and then format that Date ?
I get following varaiable, but I cannot format Integer, so is there any way to convert Integer to Date in JSP page?
<fmt:formatDate value="${c.dateInIntegerValue}" pattern="dd. …
0
votes
3answers
110 views
Conversion from string “” to type ‘Integer’ is not valid.
When I try to run the following code I get a Conversion from string "" to type 'Integer' is not valid. error.
Dim maj = (From c In connect.Courses _
Wher …
8
votes
14answers
894 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
4answers
83 views
objective-C : @synthesize not working and basic operations not working :*(
I am unsure why this code will not work and what i want it to do is when i click a button(action: buttonclick) i want it to change the two text box's(MyTextLabel & MyTextLabel2 …
1
vote
3answers
146 views
c++ - convert pointer string to integer
I am trying to convert treePtr->item.getInvest() which contains a string to an integer. Is this possible?
1
vote
4answers
62 views
Pseudorandom Sequence Generator not just a number generator.
I need an algorithm that pretty much will turn a unix timestamp into a suitably random number, so that if I "play back" the timestamps I get the same random numbers.
And here's wh …
0
votes
1answer
15 views
define integer array fortran
Hello friends,
I am a newbee in Fortran.
Can any1 tell me how to define an integer array in prior.
E.g.
I want to define an array with no.of days in 12 months.
like...
integer,al …
1
vote
3answers
227 views
Fast Multiplication
Hi!
I'm writing code for a microprocessor with fast integer arithmetic and not so fast float arithmetic. I need to divide an integer by a number from 1 to 9 and convert result bac …
1
vote
2answers
79 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 c …
2
votes
5answers
194 views
How to convert an ASCII value into a character in .NET
There are a million posts on here on how to convert a character to its ASCII value.
Well I want the complete opposite.
I have an ASCII value stored as an int and I want to display …
