Top "Int" questions

Common datatype in many programming languages for representing a whole number.

TypeError: Can't convert 'int' object to str implicitly

I am trying to write a text game and I have run into an error in the function I am …

python string int implicit
How to set null value to int in c#?

int value=0; if (value == 0) { value = null; } How can I set value to null above? Any help will be appreciated.

c# .net null int nullable
What is the maximum float in Python?

I think the maximum integer in python is available by calling sys.maxint. What is the maximum float or long …

python int long-integer max
Can I convert long to int?

I want to convert long to int. If the value of long > int.MaxValue, I am happy to let …

c# types int type-conversion long-integer
Increment a Integer's int value?

How do I increment a Integer's value in Java? I know I can get the value with intValue, and I …

java class integer int
Convert bytes to int?

I'm currently working on an encryption/decryption program and I need to be able to convert bytes to an integer. …

python python-3.x int type-conversion byte
How to convert from int to string in objective c: example code

I am trying to convert from an int to a string but I am having trouble. I followed the execution …

objective-c nsstring int
How to convert QString to int?

I have a QString in my sources. So I need to convert it to integer without "Kb". I tried Abcd.…

c++ string qt int qstring
Difference between int32, int, int32_t, int8 and int8_t

I came across the data type int32_t in a C program recently. I know that it stores 32 bits, but …

c int declaration
c++ parse int from string

Possible Duplicate: How to parse a string to an int in C++? I have done some research and some people …

c++ string int