Top "Int" questions

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

Working with NSNumber & Integer values in Swift 3

I am trying to convert my project to Swift 3.0 however I am having two error messages when working with NSNumber …

ios swift int swift3 nsnumber
How to find max value for Double and Float in Swift

Current learning Swift, there are ways to find max and min value for different kind of Integer like Int.max …

swift floating-point int double infinity
What is the best column type for a United States ZIP code?

I want to store Zip Code (within United States) in MySQL database. Saving space is a priority. which is better …

mysql int varchar
16 bit Int vs 32 bit Int vs 64 bit Int

I've been wondering this for a long time since I've never had "formal" education on computer science (I'm in highschool), …

memory 64-bit int 32-bit 16-bit
Actionscript Convert String to Int

I am using Actionscript 2.0 In a Brand new Scene. My only bit of code is: trace(int('04755')); trace(…

string actionscript int
list comprehension replace for loop in 2D matrix

I try to use list comprehension to replace the for loop. original file is 2 3 4 5 6 3 1 2 2 4 5 5 1 2 2 2 2 4 for loop line_number = 0 for line …

python int output list-comprehension
Convert String of ASCII digits to int in MIPS/Assembler

Im writing some MIPS code to take a string of ASCII digits and convert the string into an integer. The …

arrays string int mips atoi
How to subtract two unsigned ints with wrap around or overflow

There are two unsigned ints (x and y) that need to be subtracted. x is always larger than y. However, …

c overflow int subtraction
How to do Integer model validation in asp.net mvc 2

I have a registration form and the user must enter the square footage of their house. I would like this …

c# asp.net-mvc int model-validation
OCaml - How do I convert int to string?

How do I convert an int to a string? Example: 1 to "1".

string int ocaml